// JavaScript Document
$(document).ready(function(){       
  $("#shadow").css("height", $(document).height());      
	$("#shadow").fadeIn();        		
	$(".close").click(function(){	
	$("#shadow").fadeOut();
	return false;
	});
	window.setTimeout('$("#shadow").fadeOut()',32000);
	});   
	$(window).bind("resize", function(){     
	$("#shadow").css("height", $(window).height());
	});
	 $(document).keypress(function(e){
	 if(e.keyCode==15){
	 $("#shadow").fadeOut();
	 }
	 }); 
	


