$(document).ready(function(){
	$("#bottom_nav").hide();
	$(".sub").click(function(){
		if(document.getElementById('bottom_nav').style.display == "none"){
			$("#bottom_nav").fadeIn(function(){
				$.scrollTo( $('#bottom_nav'), {speed:1500} );
				$(".sub").html("Hide Tips");
			});
			
		}else{
			$("#bottom_nav").fadeOut(function(){
				$(".sub").html("Tips");
			});
			
		}
    });	
}); 
