function chargeCss() {	//REGLAGE CSS	$(".itemListing:nth-child(3n+2)").css({'marginLeft':'12px', 'marginRight':'12px'});	$(".itemListing div.offer:has(.badge)").css({"padding-right":"30px"});	//GESTION DES COULEURS	$("span.percentSup").css({"opacity":"1"});	$("span.percentMiddle").css({"opacity":"0.8"});	$("span.percentDown").css({"opacity":"0.6"});	//ANIMATION LISTING	$(".itemListing h3").show().animate({'marginTop':"0px"}, "slow", 		function(){			$(".itemListing .offer span").animate({'paddingRight':"8px"}, "slow", 			function(){				$(".itemListing img").fadeIn('slow');		});	});	}$(function() {		   		/*   	//REGLAGE CSS	$(".itemListing:nth-child(3n+2)").css({'marginLeft':'12px', 'marginRight':'12px'});	$(".itemListing div.offer:has(.badge)").css({"padding-right":"30px"});	//GESTION DES COULEURS	$("span.percentSup").css({"opacity":"1"});	$("span.percentMiddle").css({"opacity":"0.8"});	$("span.percentDown").css({"opacity":"0.6"});	//ANIMATION LISTING	$(".itemListing h3").show().animate({'marginTop':"0px"}, "slow", 		function(){			$(".itemListing .offer span").animate({'paddingRight':"8px"}, "slow", 			function(){				$(".itemListing img").fadeIn('slow');		});	});	*/		chargeCss();		//POPUP ACCUEIL// select the overlay element - and "make it an overlay"if ($("#actualite")[0]) { $("#actualite").overlay({	top: 85,	expose: {		color: '#fff',		loadSpeed: 200,		opacity: 0.8	},	api: true,	close: '.close'}).load();};});
