var $j = jQuery.noConflict();
$j(document).ready(function(){
	//$j("#foot-nav").hide();
	/*
	$j(".tri").click(function(){
	 if(document.getElementById('foot-nav').style.display == "none"){
		$j("#foot-nav").fadeIn(function(){
				$j.scrollTo($j('#foot-nav'),{speed: 1000});
				//$j(".tri").html("Hide Tips");
		});
	}else{
			$j("#foot-nav").fadeOut(function(){
				$j(".tri").html("Tips");
			});	
		}
    });	*/
}); 

