(function($){
$(document).ready(function() {
	$("#hide").click(function() {
		$("#header , #bookit , #footer , #hide").fadeOut("slow");
		$("#show").delay(1000).fadeIn("fast");
    });
	$("#show").click(function() {
		$("#show").fadeOut("fast");
		$("#header , #bookit , #footer , #hide").delay(500).fadeIn("slow");
    });
});
})(jQuery);
