/*
		********************************************
		*                                          *
		* Code: http://candoo.eu                   *
		*                                          *
		********************************************
*/


/* -------------------------------------------------------------------------------------------------
                                             FUNCTIONS
------------------------------------------------------------------------------------------------- */

function showCurtain() {
	$("#curtain").addClass("visible-curtain");
	$("#curtain").fadeIn("slow");
}

function hideCurtain() {
	$("#curtain").fadeOut("slow");
	setTimeout(function() {
		$("#curtain").removeClass("visible-curtain");
	}, 1500);		
}


/* -------------------------------------------------------------------------------------------------
                                           DOCUMENT READY
------------------------------------------------------------------------------------------------- */

$(document).ready(function() {
    
    $(document).everyTime("30s", function() {
    	showCurtain();
    	setTimeout(changeTheme, 700);
    	setTimeout(hideCurtain, 1500);
    	setTimeout(blick, 2200);
    	
	});
    
    
});

