function initMenu() {
  try{
		$('#menu ul').hide();
		$('#menu ul:first').show();
		$('#menu li a').click(
			function() {
				$('#menu2 ul:visible').slideUp('normal');
				$('#menu3 ul:visible').slideUp('normal');
				var checkElement = $(this).next();
				if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
					return false;
					}
				if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
					$('#menu ul:visible').slideUp('normal');
					checkElement.slideDown('normal');
					return false;
					}
				}
			);
	}catch(e){
		window.alert(e);
	}
		
	try{
		$('#menu2 ul').hide();
		$('#menu2 ul:first').hide();
		$('#menu2 li a').click(
			function() {
				$('#menu ul:visible').slideUp('normal');
				$('#menu3 ul:visible').slideUp('normal');
				var checkElement = $(this).next();
				if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
					return false;
					}
				if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
					$('#menu2 ul:visible').slideUp('normal');
					checkElement.slideDown('normal');
					return false;
					}
				}
			);
	}catch(e){
		window.alert(e);
	}
		
	try{		
		$('#menu3 ul').hide();
		$('#menu3 ul:first').hide();
		$('#menu3 li a').click(
			function() {
				$('#menu ul:visible').slideUp('normal');
				$('#menu2 ul:visible').slideUp('normal');
				var checkElement = $(this).next();
				if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
					return false;
					}
				if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
					$('#menu3 ul:visible').slideUp('normal');
					checkElement.slideDown('normal');
					return false;
					}
				}
			);
	}catch(e){
		window.alert(e);
	}
	
 }

$(document).ready(function() {initMenu();});


