//<![CDATA[
function initMenus() {
	$('ul.menu ul').hide();
	$.each($('ul.menu'), function(){
		$('#' + this.id + '.expandfirst ul:first').show();
		$('.expanded').show();
	});
		
	$('ul.menu li a').click(	
		function() {
			var checkElement = $(this).next();
			var parent = this.parentNode.parentNode.id;
			
			if($('#' + parent).hasClass('noaccordion')) {
				// Check for a single link with no children - i.e. no accordion necessary.
				if(!(checkElement.is('ul'))){
					// Let the link execute with no further interruptions!
					return true;
				}
				
				if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
					$(this).next().children().fadeOut("fast");
				}else{
					$(this).next().children().fadeIn("normal");
				}
				$(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();});
//[]>