var $h = jQuery.noConflict();
$h(document).ready(function(){
	$h("#menunav").hide();
	$h(".pop").click(function(){
	 if(document.getElementById('menunav').style.display == "none"){
		$h("#menunav").fadeIn("fast",function(){
		});
	}else{
			$h("#menunav").fadeOut(function(){
			});	
		}
    });	
}); 

