// JavaScript Document

$(document).ready(function(){
	
	$("#opaque").hide();

	$("#opaque").fadeIn('slow');
	
	$(document).click(function () {
		$("#opaque").fadeOut('slow', function(){
			window.location = 'index.php';
		});
    });	
});
