
$(document).ready(function(){
	$('.menu ul li').hover(
	function() {
		
		$(this).find('.innermenu').hide();
		
		$(this).find('.innermenu').hide('fast');
		if ($(this).find('ul').html()!=null) $('.innermenu').html('	<ul class="submenu oh">'+$(this).find('ul').html()+'</ul>'); else $('.innermenu').html(''	);

		

		/*  $(this).addClass("active");
			$(this).find('div').stop(true, true); // останавливаем всю текущую анимацию
			$(this).find('div').slideDown(); */
	},
	function() {
		// $('.innermenu').html('');
		/*
			$(this).removeClass("active");
			$(this).find('div').slideUp('fast');
		*/
	}
	);
});


