function page(){
			$('#top').fadeIn(200,function(){
					$('#logo').fadeIn(200,
						//Fonction d'animation du menu
						function(){$('#menu').fadeIn(500,

									function(){
											 $('#maincontent').fadeIn(200,function(){$('#bottom').fadeIn(200)});
										}

						);}
					);
					
				}
			); 
			
			
			$(function() { 
 
    // if the function argument is given to overlay, 
    // it is assumed to be the onBeforeLoad event listener 
    $("a[rel]").overlay({ 
 
        expose: 'black', 
        effect: 'apple', 
 
        onBeforeLoad: function() { 
 
            // grab wrapper element inside content 
            var wrap = this.getContent().find(".contentWrap"); 
 
            // load the page specified in the trigger 
            wrap.load(this.getTrigger().attr("href")); 
        } 
 
    }); 
})
}

