$(document).ready(function() {

 	$('#nature').click(function(){
		$("#tbl").hide("slide", { direction: "down" }, 1000,function(){
			top.location = '/?slide';
			$("#footerwrap").hide();
		});
		
	});
	
	$('#menu ul a,#footer ul a').hover( 
		function() {
			$(this).addClass('hover');			
	},	function () {
			$(this).removeClass('hover');
	});
	
});