<!-- hide from older browsers

/*** Thanks to Andrew Bossom for the idea of defining the image path here and declaring the path to the top level directory in each HTML document. ***/


// imgPath contains the full path from the HTML document to the folder with the images:
 imgPath= toTop + 'images/';

// preload images and ensure browser can do JavaScript rollovers:
 if (document.images) {
 spacer= new Image();      spacer.src= imgPath + 'spacer.gif';         //Placeholder
 note1=  new Image(7,11);  note1.src=  imgPath + 'goldnote_tiny.gif';  //Mouseover images
 note2=  new Image(12,21); note2.src=  imgPath + 'goldnote.gif';
 aninew= new Image(30,14); aninew.src= imgPath + 'new05.gif';
 smNew= new Image(32,16);  smNew.src=  imgPath + 'new_sm.gif';
 }

// this changes the images
 function imgChange(imgName,ObjName) {
  if (document.images)  {
  document.images[imgName].src = eval(ObjName + ".src");
  }
 }


// end hiding -->