$(document).ready(function(){
$('.mod-navigationHome ul.lev-2-wrapper').css({'display': 'block','opacity': 0, 'top': 0});
$('.mod-navigationHome ul.lev-1-wrapper > li').hover(
	function() {
		$(this).children('ul.lev-2-wrapper').css({'z-index': 1}).stop().animate({'opacity': 1, 'top': -47},  500);
	},
	function() {
		$(this).children('ul.lev-2-wrapper').css({'z-index': -1}).stop().animate({'opacity': 0, 'top': 0},  500);
	}
);
});


