$(function() {
		   
		slide_func(1);
			function slide_func (x) 
			{
				if (x>3)
				{
					x=1;
				}
			//	alert(x);
					$("#theme_mois_"+x+":hidden").show('fold','',500,callback(x));
							  setTimeout(function() {slide_func((x+1))}, 7000);
							 // colorier(' + (x + 1) +');
			}
			
	function callback(x){
		//alert('oki'+x);
		setTimeout(function(){
			$("#theme_mois_"+x).hide('fold','',500,'');
		}, 6500);
	};
});
