// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	$('div.fadeImg').click(function(){
		$(this).fadeOut(1000,function(){
			$('div.border').show("scale", { direction: "center" }, 500, function(){
				$(this).next('div.slide').show("slide", { direction: "up" }, 1000, function(){
					$('footer').fadeIn(1500);
				});
			});
			$('div.illu').fadeIn(1500);
		});
	});
	
	setTimeout(function(){
		if ( $('div.fadeImg').is(':visible') ) { 
    		$('div.fadeImg').fadeOut(1000,function(){
				$('div.border').show("scale", { direction: "center" }, 500, function(){
					$(this).next('div.slide').show("slide", { direction: "up" }, 1000, function(){
						$('footer').fadeIn(1500);
					});
				});
				$('div.illu').fadeIn(1500);
			});
		}	
	},4000)	

});
