function menuOver(obj) { obj.className += "_hover"; }
function menuOut(obj)  { obj.className = obj.className.replace(/_hover/g, ""); }

