
$(document).ready(function()
	{
	$(function () {
		
		
		
//////////Picasso would have been proud...
		$(".galerie a").lightBox();
		
//////////When you pass over me, I'm shining like the sun
		$('#menu li').find('a').each(function () {
			var $img = $('img', this).css("opacity", "0.8");
			$(this).hover(function () {
				$img.stop().fadeTo(250, 1);
			}, function () {
				$img.stop().fadeTo(500, 0.8);
			});
			$(this).focus(function () {
				$(this).stop()
				.animate({ opacity:"0.8"},{queue:true, duration:200})
				.animate({ opacity:"1"},{queue:true, duration:200});
			});
		});
		
		$('a.survol').each(function () {
			var $img = $('img', this).css("opacity", "1");
			$(this).hover(function () {
				$img.stop().fadeTo(500, 0.9);
			}, function () {
				$img.stop().fadeTo(250, 1);
			});
		});
		
	
	});	
});