$j(window).load(function(){
	
	
	$j(".zoom").colorbox();
	
	//$j("#phpressobar").;
	
	var divToHide = 0;
	// Gestion des encarts
	$j('.encartLink').click(function(){
		$j(this).addClass('active');
		$j('#l'+divToHide).removeClass('active');
		var divToShow = $j(this).attr('id').substring(1);
		$j('#c'+divToHide).fadeOut('fast',function(){$j('#c'+divToShow).fadeIn('fast');});			
		divToHide = divToShow;
		return false;
		
	});
	
});

function verifNL(email){
	
	$j.post("index.php",{mdl:'mod_newsletter',act:'ajax',email:email}, function(retour){
		
		if(retour!=null){
			$j("#newsletter_content").hide();
			$j("#newsletter_content").html(retour);
			$j("#newsletter_content").fadeIn();
		}
		
	});
	
}
