var initAnim = function(){	
	$(".ideesMenus h2 img").each( function (){
		var imgOff = $(this).attr("src").replace("plat.jpg","off.jpg");
		$(this).hide();
		$(this).attr("src", imgOff);
		$(this).fadeIn("slow");
	});
	$(".ideesMenus h2 a").toggle(
      function () {
		  var img = $(this).find("img").eq(0);
		  $(img).attr("src", img.attr("src").replace("off.jpg","on.jpg"));
		  $(img).hide();
		  $(img).fadeIn("slow");
		  $(this).parent("h2").siblings(".animTxtIntro").eq(0).hide();
		  $(this).parent("h2").siblings(".animList").eq(0).fadeIn("slow");
      },
      function () {
		  var img = $(this).find("img").eq(0);
		  $(img).attr("src", img.attr("src").replace("on.jpg","off.jpg"));
		  $(img).hide();
		  $(img).fadeIn("slow");
		  $(this).parent("h2").siblings(".animList").eq(0).hide();
        $(this).parent("h2").siblings(".animTxtIntro").eq(0).fadeIn("slow");
      }
    );
}

$(document).ready(function(){
   $(".animList").hide();
	setTimeout("initAnim()", 2000);
});
