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").slideToggle(function(){
				$j.scrollTo($j('#foot-nav'),{speed: 1000});
				$j(".tri").html("Hide");
		});
	}else{
			$j("#foot-nav").fadeOut(function(){
				$j(".tri").html("Read More");
			});	
		}
    });	
}); 
