		$(document).ready(function() {
			$("#" + activeMenuId).addClass("menuItemOn");
			
			$(".expandModuleIcon").bind("click", function() {
				$(".expandModuleBody").slideUp("slow");
				$(".expandModuleIcon").show();
				$(this).parent(".expandModule").children(".expandModuleBody").slideDown("slow");
				$(this).hide();
			});
			$(".expandModuleHeader").bind("click", function() {
				$(".expandModuleBody").slideUp("slow");
				$(".expandModuleIcon").show();
				$(this).parent(".expandModule").children(".expandModuleBody").slideDown("slow");
				$(this).parent(".expandModule").children(".expandModuleIcon").hide();
			});

			$(".menuItem").bind("mouseover", function() {
				$(this).addClass("menuItemOn");
			});
			$(".menuItem").bind("mouseout", function() {

				if ($(this).attr("id") != activeMenuId) {
					$(this).removeClass("menuItemOn");
				}
			});
		});
	