//*************************************************************************

//** Author : Guillaume Quimper - Influenza marketing **

//** Created : April 2009 **	

//*************************************************************************

// **********************
// Main Navigation effect
// **********************

$(function() {
	$("#mainNav li:not(.current_page_item)").hover(function() {
		$(this).stop().animate({top: "7"}, "normal");
		//$("a:first", this).stop().animate({width: "277"}, "fast");
	}, function() {
	  $(this).stop().animate({top: "0"}, "fast");
	  //$("a:first", this).stop().animate({width: "253"}, "fast");
	});
});

// **************
// SubNav classes
// **************
$(function() {
	$(".subNav li:last").addClass("last");
});

// ***************
// Column Gallery
// ***************
$(function() {
	$('.galerie a').lightBox({
		txtImage: 'image &#35; ',
		txtOf: 'sur'						 
	});
});

// ************
// FIX .png IE6
// ************

$(function() {
	$('#footer').ifixpng();
});
