mainNav = function() {
 $("#topnav li").bind("mouseenter",function(){
 this.className += "_over over";
 }).bind("mouseleave",function(){
 this.className = this.className.replace("_over over", "");
 });
} 
