var $j = jQuery.noConflict();
$j(document).ready(function(){
	$j("#bottom-menu").hide();
	$j(".sub").click(function(){
	 if(document.getElementById('bottom-menu').style.display == "none"){
		$j("#bottom-menu").slideToggle(function(){
				$j.scrollTo($j('#bottom-menu'),{speed: 1000});
				$j(".sub").html("Hide Info");
		});
	}else{
			$j("#bottom-menu").hide(function(){
				$j(".sub").html("Info");
			});	
		}
    });	
}); 
