/* Script gallerie
   Si vous souhaitez réutiliser le script, merci de me le signaler (:
   
   Julien Amblard
   http://www.graphiste-webdesign.fr/html
*/
$(document).ready(function() {
	
	
	
	$(".big img").hide();
	$(".big #img1").show();
	$("#galerie a.mos").click(function(){
		
		if($(".big #" + this.rel).is(":hidden"))
		{
			$(".big img").fadeOut('slow');
			$(".big #"+this.rel).fadeIn('slow');
			$(".big #leg"+this.rel).fadeIn('slow');
		}
		
	});
	$("#galerie2 a.mos").click(function(){
		
		if($(".big #" + this.rel).is(":hidden"))
		{
			$(".big img").fadeOut('slow');
			$(".big .imglegende").fadeOut('slow');
			$(".big #"+this.rel).fadeIn('slow');
			$(".big #leg"+this.rel).fadeIn('slow');
		}
		
	});
	
	$(".hover").hover(function(){
		$(".hover").stop().animate({opacity:0.6},200,'linear');
		$(this).stop().animate({opacity:1},200,'linear');
	}, function(){
		$(".hover").stop().animate({opacity:1},200,'linear');
	});
	
});
