// JavaScript Document

jQuery(function( $ ){
$('.lvl1 ul').css({'opacity':'0'});

$('.lvl1').mouseenter(function(){
	$(this).find('.menuTit').stop().stop().animate({'top':'-20px'});
	$(this).find('ul').stop().stop().animate({'top':'10px', 'opacity':'1'}, 'slow');
	
	}).mouseleave(function(){
		$(this).find('.menuTit').stop().stop().animate({'top':'0'});
		$(this).find('ul').stop().stop().animate({'top':'28px', 'opacity':'0'});
		$('#menuVitrine ul').fadeOut();
});

});
