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

