$(document).ready(function(){
	// Survol d'un item production
	$('#production-listing>li').mouseenter(function(){
		$(this).children('div.production-item').css('background-color','#ffe400');
		$(this).children('div.production-item').children('a.knowmore').css('background-image', 'url(/locales/'+sLocales+'/knowmore_prodhover.jpg)');
	});
	// Sortie d'un item production
	$('#production-listing>li').mouseleave(function(){
		$(this).children('div.production-item').css('background-color','#ffffff');
		$(this).children('div.production-item').children('a.knowmore').css('background-image', 'url(/locales/'+sLocales+'/knowmore.jpg)');
	});
});
