$(window).load(function(){initMenus()});
			
initMenus = function() {
	$('a').click(function() {
		if ($(this).attr('href') == "#") return false;
	});
	
	$('ul.menu > li').has('ul').each(function(){
		if (($(this).index() + 1) % 4 == 0)
			$(this).addClass('right');
		if ($('ul > li', this).length < 4)
			$(this).addClass('narrow');
	});
	
	$('ul.menu > li').hover(
		function() {
			$(this).addClass("active");
			$(this).find('ul').slideDown('fast', function() {
				if ($(this).parent().has('div').length == 0)
					$(this).append("<div></div>");
			});
		},
		function() {
			if ($(this).has('div').length == 0)
				$(this).find('div').remove()
			$(this).removeClass("active");
			$(this).find('ul').hide();
	});
}
