$(document).ready(function(){
  // Your code here...
	  //////////Rollover & Swap
		$('#mainMenu li').find('a').each(function () {
			var $img = $('img.hover', this).css("opacity", "0");
			var $img = $('img.hover', this).css("display", "block");
			$(this).hover(function () {
				$img.stop().fadeTo(250, 1);
			}, function () {
				$img.stop().fadeTo(250, 0);
			});
		});
		
		$('#concours').find('a').each(function () {
			var $img = $('img.hover', this).css("opacity", "0");
			var $img = $('img.hover', this).css("display", "block");
			$(this).hover(function () {
				$img.stop().fadeTo(0, 1);
			}, function () {
				$img.stop().fadeTo(0, 0);
			});
		});
		

//////////Picasso would have been proud...
		$(".gallery a").lightBox();
   
});
