//javascript functions for Pam Ferrazzutti Antiques

// for rollover effects refering to class in style sheet
function rollon() {
  if (window.event.srcElement.className == "lowlight") {
     window.event.srcElement.className = "highlight";
  }
}

// document.onmouseover = rollon;
function rolloff() {
  if (window.event.srcElement.className == "highlight") {
     window.event.srcElement.className = "lowlight";
  }
}

