var $h = jQuery.noConflict();
$h(document).ready(function(){
	$h("#bottomnav").hide();
	$h(".pop").mouseover(function(){
	 if(document.getElementById('bottomnav').style.display == "none"){
		$h("#bottomnav").fadeIn("fast",function(){
			$h.scrollTo($h('#bottomnav'),{speed: 1000});
		});
	}else{
			$h("#bottomnav").fadeOut(function(){
			});	
		}
    });	
	$h("#bottomnav").mouseleave(function(){
		$h("#bottomnav").hide();
	});
}); 

