	
	function mainmenu(){
	$("#menu-principale li.li-first-level").hover(function(){
			$(this).find('ul:first:hidden').slideDown("fast");
			$(this).addClass("hover");
			},function(){
			$(this).find('ul:first').slideUp("fast");
			$(this).removeClass("hover");
			});
	}
	 $(document).ready(function(){
		mainmenu();
	});


$(document).ready(function(){
	size_img();
});


function size_img()
{
$('.element-center').each(function(){
	var img_height = $(this).find('img').height();
	if (img_height <= 100){
		$(this).addClass('more-marge');
	}
 });
}

$(document).ready(function(){	
	$(".block-panier").click(function(){
		window.location=$(this).find("a").attr("href");return false;
	});
});		
	




