$(document).ready(function(){
		//javascript for top menu dropdown
		$(".menu").children("ul").children("li").bind("mouseover", function(){
		   $(this).children("ul").show();
		   $(this).css({ border: "1px solid #dfddd9", padding: "5px"});
		   $(this).children("a").css({oldColor : $(this).children("a").css("color")});
		   $(this).children("a").css({ color: "#ffa415"});
		 });
		$(".menu").children("ul").children("li").bind("mouseout", function(){
		   $(this).children("ul").hide();
		   $(this).css({ border: "none", padding: "6px" });
		   //$(this).children("a").css({ color: "#5b6266"});
		   $(this).children("a").css({color:$(this).children("a").css("oldColor") });
		 });

		 
		//javascript for side nav mouseover
		$(".leftTopLevel").bind("mouseover", function(){
		   $(this).addClass("leftTopLevelActive");
			$(".leftNavBlockList").show();
		 });
		$(".leftTopLevel").bind("mouseout", function(){
		   $(this).removeClass("leftTopLevelActive");
			$(".leftNavBlockList").hide();
		 });
		$(".leftNavBlockList").bind("mouseover", function(){
		   $(this).parent(".leftNavExtra").children(".leftTopLevel").addClass("leftTopLevelActive");
			$(".leftNavBlockList").show();
		 });
		$(".leftNavBlockList").bind("mouseout", function(){
		   $(this).parent(".leftNavExtra").children(".leftTopLevel").removeClass("leftTopLevelActive");
			$(".leftNavBlockList").hide();
		 });
	 });