if (document.images) {

	var handbellchoirOn = new Image();
      handbellchoirOn.src = "../icons4/handbell_on.gif";
      var handbellchoirOff = new Image();
      handbellchoirOff.src = "../icons4/handbell_off.gif";

}

function changeIn(imageName) {
      if (!document.images) return;
      document.images[imageName].src = eval(imageName + "On.src");
}

function changeOut(imageName) {
      if (!document.images) return;
      document.images[imageName].src = eval(imageName + "Off.src");
}


document.write('<a onmouseover="changeIn(\'handbellchoir\');" onmouseout="changeOut(\'handbellchoir\');" a href="../musicgroups.htm#handbell"><img src="../icons4/handbell_off.gif" name="handbellchoir" border=0 width="96" height="18" vspace="1"></a>')

