/* ------------------------------------- */
/* JS - SQLI Studio / AH - Octobre 2008  */
/* ------------------------------------- */
$(document).ready(function () {
	// Pop up 1 : Contact ----------------------------------------------- 
	$("div#popupFullSite1").addClass("creaPopup");
	$("div#popUpFond1").addClass("creaPopup");
	
	// bouton pour ouvrir
	$(window).load(function() {
		$("div#popde").css("visibility", "visible");
		$("div#popde").show();
		$("div#popupFullSite1").show();
		$("div#popUpFond1").show();
		return false;
	});
	
	// bouton pour fermer
	$('#closePopup').click(function () {
		$("div#popupFullSite1").hide();
		$("div#popUpFond1").hide();	
		return false;
	});
	//  -------------------------------------------------------
});