if (Drupal.jsEnabled){
	$(document).ready(function() {	
		$('div.menu-top ul.menu li').hover(function() {
                        //выполняется при наведении
			$(this).find('ul').fadeIn(300);
		},
		function() {
                        //выполняется когда мы убираем мышку
			$(this).find('ul').hide();
		});	
	});
}
