function initMenu() {
	$('nav ul ul').hide();
	$('nav ul li a').click(
		function() {
			var href = $(this).attr('href');
			setTimeout(function() {window.location = href}, 400);
				
			var checkElement = $(this).next();
			if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
				return false;
			}
			if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
				$('nav ul ul:visible').slideUp('normal');
				if ($(this).hasClass('singleitem')) {
					//no animation
				} else {
					checkElement.slideDown('normal');
				}
				return false;
			}
		}
	);
}
