function initMenu()
{
	// highlight current location
	var path = window.location;
	var home = "/";
	$("a[href='" + [path || home] + "']").each(function() {
		$(this).addClass("menuItemCurrent");
	});

	// change  color on hover
	$(".menuItem").hover(
		function() {
			$(this).addClass("menuItemOver");
			$(".menuItemOver .menuActive").fadeIn(300);
		},
		function() {
			if($(this).hasClass("menuItemCurrent") == false)
			{  
				$(".menuItemOver .menuActive").fadeOut(800);
			}
			$(this).removeClass("menuItemOver");
		}
	);

	$(".menuItem").click(
		function() {
			if($(this).hasClass("menuItemCurrent") == false)
			{
				$('.menuItemCurrent .menuActive').stop().fadeOut(800);
				$(".menuItem").removeClass('menuItemCurrent');
				$(this).addClass('menuItemCurrent');
			}
		}
	);
}
