//chargement images hover
i1 = new Image;
i1.src = "images/noir90.png";
i2 = new Image;
i2.src = "images/licont_hover.png";
i3 = new Image;
i3.src = "images/recherche_submit_hover.png";
i4 = new Image;
i4.src = "images/noir95.png";

$(function(){
	/*MENU*/
   $(".elt-menu").hover(function(){
		$(this).children("ul").show();
		$(this).children("a").addClass("hover");
	}, function() {
		$(this).children("ul").hide();
		$(this).children("a").removeClass("hover");
	});
	/*OVER FONDUS*/
	$('.lienfondu')
		.mouseover(function(){
			$(this).animate({opacity:0.5}, 200);
	})
		.mouseout(function(){
			$(this).animate({opacity:1}, 200);
	})
	/*LIGHTBOX*/
	$("a.fancybox").fancybox();
	/*SCROLL*/
	$('.textescroll').jScrollPane({verticalGutter:20});
});
