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

