





 $(document).ready(function() {
	 
 		$('#light_switch').delay(500).fadeOut(50).fadeIn(50).delay(200).fadeOut(50).fadeIn(50).fadeOut(50).fadeIn(50).fadeOut(50);
 });
 
 $(document).ready(function(){
  
    $('.power_out_module_opener').click(function(event){
		$('.power_out_bg').show('fast');
		 $('#power_out_module').show('fast');
		 event.preventDefault();
	});
	
	$('.power_out_module_closer').click(function(event){
		 $('#power_out_module').hide('fast');
		 $('.power_out_bg').hide('fast');
		  event.preventDefault();
	
	});
	});
