/* 
Simple JQuery menu.
http://w w w.i- marco. nl/w eblog/
*/

function initMenus() {
	$('ul.menu ul').hide();
	$.each($('ul.menu'), function(){
		$('#' + this.id + '.expandfirst ul:first').show();
		$('#' + this.id + '.expandsecond ul:eq(1)').show();
		$('#' + this.id + '.expandthird ul:eq(2)').show();
		$('#' + this.id + '.expandfourth ul:eq(3)').show();
		$('#' + this.id + '.expandfifth ul:eq(4)').show();
		$('#' + this.id + '.expandsixth ul:eq(5)').show();
		$('#' + this.id + '.expandseventh ul:eq(6)').show();
		$('#' + this.id + '.expandeighth ul:eq(7)').show();
	});
	$('ul.menu li a').click(
		function() {
			var checkElement = $(this).next();
			var parent = this.parentNode.parentNode.id;

			if($('#' + parent).hasClass('noaccordion')) {
				$(this).next().slideToggle('normal');
				return false;
			}
			if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
				if($('#' + parent).hasClass('collapsible')) {
					$('#' + parent + ' ul:visible').slideUp('normal');
				}
				return false;
			}
			if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
				$('#' + parent + ' ul:visible').slideUp('normal');
				checkElement.slideDown('normal');
				return false;
			}
		}
	);
}
$(document).ready(function() {initMenus();});
