$(function() {
	var total;	
	$("#current").text("1");	
	total = $("#contenu img").size();
	$("#total").text(total);		
	$("#contenu img:not(:first)").css("display", "none");		
	$("#logos img").css("display", "inline");		
	//next button
	$("#next").click(function () {				
		$("#contenu img:first").fadeOut("slow", function(){
			
			$("#contenu img:first").clone().insertAfter("#contenu img:last");
			$(this).remove();
			$("#contenu img:not(:first)").css("display", "none");
			$("#contenu img:first").css("display", "block");
			
			val = parseInt($("#current").text()) + 1;			
			
			if(val > total){
				val = 1;
			}
			$("#current").text(val);
		});
		
	});
	
	//previous button
	$("#previous").click(function () {		
		$("#contenu img:first").fadeOut("slow", function(){
			$("#contenu img:last").clone().insertBefore("#contenu img:first");
			$("#contenu img:last").remove();
			$("#contenu img:not(:first)").css("display", "none");
			$("#contenu img:first").css("display", "block");			
			val = parseInt($("#current").text()) - 1;
			if(val < 1){			
				val = $("#contenu img").size();
			}
			$("#current").text(val);
		});
		
	});
	
		$(".item-toggle").click(function () {
			if(!$.browser.msie){

				$(this).next("ul").toggle("slow");
				$(".submenu:visible").not($(this).next("ul")).toggle("slow");
			}
		});
		//replie toutes les items du menu
		if(!$.browser.msie){		
			$(".submenu").css("display","none");
		}
	

	
});

