// Menu Javascript


$(document).ready(function() {
	$("div.level1 li").mouseenter(function() {
   		// Changes Class of Current Link to Down Arrow
		$(this).addClass("white").siblings().removeClass("white");
		
		// Detects Id of Clicked Line And sets Var expand
		expand = this.id;
		
		// Slide Siblings Up And Div with corresponding Id Down
		$('div.'+expand).siblings().slideUp(0);
		$("div."+expand).fadeIn(300);
		$("div.level3 div").slideUp(0);
		$("div.level2 li.parent").removeClass("white");
		
	});
});

$(document).ready(function() {
	$("div.level2 li.parent").mouseenter(function() {
		// Changes Class of Current Link to Down Arrow
		$(this).addClass("white").siblings().removeClass("white");
		
		// Detects Id of Clicked Line And sets Var expand
		expand = this.id;
		
		// Slide Siblings Up And Div with corresponding Id Down
		$('div.'+expand).siblings().slideUp(0);
		$("div."+expand).fadeIn(400);
		
	});
});

