$(document).ready(function() {
	// --- Активация главного меню
	$('#mainmenu').children().each(function( index ){
		// - 1 уровень
		$(this).mouseenter( function(){
			$(this).css( 'background-color', '#fff');
			$(this).children( 'ul' ).show();
		});	
		$(this).mouseleave( function(){
			$(this).css( 'background-color', '#ebebeb');
			$(this).children( 'ul' ).hide();
		});
		// - 2 уровень
		$(this).children( 'ul' ).mouseenter( function(){
			// - 3 уровень
			$(this).children( 'li' ).mouseenter( function(){ $(this).children( 'ul' ).show(); });
			$(this).children( 'li' ).mouseleave( function(){ $(this).children( 'ul' ).hide(); });
		});
	});
});
