// Affiche la Home
function showHome() {
	// Cache le "PreHome"
	$("#prehome").fadeOut(1500);
}

$(document).ready(function() {
	// Vérifier l'existance de l'élément pre-home
	if( $("#prehome").length )
	{
		// Init
		$("#prehome_floue").css({
			left : "-50px",
			height : "861px",
			width : "1550px"
		});
		$("#site").hide();
		$("#prehome").show();
		
		// Animation PreHome	
		$("#prehome_floue").fadeTo(0, 0, function() {
			$(this).animate({
				left : 0,
				height : "805px",
				opacity : 1,
				width : "1450px"
			}, {
				duration : 1500,
				queue : false,
				complete : function() {
					$("#prehome_nette").show();
					$(this).fadeTo(900, 0, function() {
						$("#site").fadeTo(300, 1);
						// Affiche l'animation Flash
						var flashvars = {}; 
						var params = {}; 
						var attributes = {}; 
						params.wmode = "transparent";
							swfobject.embedSWF("./flash/prehome_logo.swf", "prehome_flash", "415", "510", "6", "", flashvars, params, attributes); 
						});
				}
			});	
		});
		
		// Passer l'intro
		$("#passer_intro").bind("click", function() {
			$("#site").show();
			$("#prehome").hide();
			return false;
		})
		
		
	}else{
		// On affiche le site
		$("#site").show();
	}
});
