$(document).ready(function() {	
	if ($('ul.menu-produits').length > 0) {
		$('ul.menu-produits li a').mouseenter(function(){
			$(this).parent('li').css({
				background: 'url("images/web/menu-produits-hover.png") repeat-x 0 0'
			});
			
			var $alias = $(this).parent('li').attr("class");
			var $url = "uploads/images/produits/" + $alias + "/picto-hover.gif"
			
			$(this).children('img').attr("src", $url);
		});
		
		$('ul.menu-produits li a').mouseleave(function(){
			$(this).parent('li').css({
				background: 'url("images/web/menu-produits.png") repeat-x 0 0'
			});
			
			var $alias = $(this).parent('li').attr("class");
			var $url = "uploads/images/produits/" + $alias + "/picto.gif"
			
			$(this).children('img').attr("src", $url);
		});
	}
	
	if($('#lang').length > 0)
	{
		$('#lang a').each(function(){
			if($(this).attr('lang') == 'de')
			{
				$(this).hide();
			}
		})
	}	
})
