$(function(){
			$('#footer').hide();
			setTimeout("show_footer();", 1000);
			//show_footer();
			
});

function show_footer(){
	$('#footer').animate({opacity: "show"}, 1000);
}