// JavaScript Document


$(document).ready(function() {
		 $("#light").hide('fast');

	$("#close, #fade").click(function(event){
	 $("#fade").css("height", $(document).height()).hide();
     $("#light").hide();

		return false;
	 });
	 
	 
     $("#playbut").click(function(event){
		 
	$("#fade").css("height", $(document).height()).show();
     $("#light").show();
        return false;
		
	 });
});
	 
	 
	 
	 
	

    

	 
	
   

	 

	   

