﻿	var nom="eneria2012";
	var valeur="2012";
	var duree=300;

    jQuery(document).ready(function () {
    	
		if(!$.cookie(nom))	{
			$("#flash").load("voeux/popup2012.html",function(response,status,xhr){
			$("#modPopup").modal({
				closeHTML: '',
				minHeight: 300,
				minWidth: 500,
				position: ["40px"],
				onClose :function()
				{
					$.cookie(nom, valeur, { expires: duree,path: '/' });  
					$.modal.close();
				}
			});
			
			$("#closepopup").bind("click",function(){
			$.modal.close();			
			});	
			})
			
			
			
			
		}
		
		

		
    });
	
	

