
jQuery(document).ready(function(){
	jQuery("#footer_tab").hide();
	jQuery("#footer_tab img").hover(function(){
		jQuery(this).css("cursor","pointer");
	});
	
	jQuery("#footer_tab img").click(function(){
		jQuery(this).hide();
		jQuery("#footer").show( "slow" );
	});
	
	if ( jQuery(document).height() < 800 ) {
		setTimeout( function() {
			jQuery("#footer").hide( "slow", function() {
				jQuery("#footer_tab").show();
			} );
		}, 3000 );
	}
});
