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

