codice:
window.onload=function() {
  document.getElementById("tuoelem").onmouseover=function() { this.className="classe1"; }
  document.getElementById("tuoelem").onmouseout=function() { this.className="classe2"; }
}