function initMenus() 
{
	$.each($('ul.menu'), function() { 
		var cookie = $.cookie(this.id);	
		if(!(cookie === null || String(cookie).length < 1))
		{ 
			$('#' + this.id + ' .' + cookie).next().show();
		}
 	}); 

	$('ul.menu li a').click(function() { 
		var checkElement = $(this).next(); 
		var parent = this.parentNode.parentNode.id; 
		if((checkElement.is('ul')) && (checkElement.is(':visible'))) 
		{ 		
			return false; 
		} 
		if((checkElement.is('ul')) && (!checkElement.is(':visible'))) 
		{ 
			$('#' + parent + ' ul:visible').slideUp('normal'); 
			if((String(parent).length > 0) && (String(this.className).length > 0)) 
			{
				$.cookie(parent, this.className);
			} 
			checkElement.slideDown('normal');
			return false;
 		} 
	});
}
$(document).ready(function() {initMenus();});