function initMenus() {
	$('#menu ul').hide();
	$.each($('#menu'), function(){
		$('#' + this.id + '.expandfirst .active').slideDown();
	});
	$('#menu li a').click(
		function() {
			var checkElement = $(this).next();
			if( checkElement.is('ul') )
			{
				if((checkElement.is(':visible'))) {
					$(checkElement).slideUp();
					return false;
				}else{
					var checkIftracks = checkElement.children().html();
					if(checkIftracks !== null){
						$(checkElement).slideDown();
						//return false;
					}
				}
			}
		}
	);
}
$(document).ready(function() {initMenus();});
