 $(document).ready(function(){
							
							$("#shmenu").click(function(){$("#hiddenmenu").slideToggle("slow");});
							$(".hideSEOtext").hide();
							if($("#main_column").height() > $("#right_column").height())
							 var height = $("#main_column").height();
							else
							 var height = $("#right_column").height();
							$("#mainwrap").css({height: height+120 + "px"});
   $("ul#nav li a").hover(function(){
     $(this).parent("li").css({background: "white", border: "black solid 1px"});
	 $(this).css({color: "black"});
	 $(this).parent("li").stop().animate({marginTop: 10 + "px"},400);
   }, function(){
	 $(this).parent("li").css({background: "#039", border: "#039 solid 1px"});
	 $(this).css({color: "white", border: "none" });
	 $(this).parent("li").stop().animate({marginTop: 0 + "px"},400);
   });
 });

