<!--
var count = 1
function PreloadImages(image, width, height, ext)
{
  eval("a" + count + "=new Image(" + width + "," + height + ");" + "a" + count + ".src='/images/" + image + "_off." + ext + "';")
  count++
  eval("a" + count + "=new Image(" + width + "," + height + ");" + "a" + count + ".src='/images/" + image + "_on." + ext + "';")
  count++
}

function ChangeImage(img, image_src)
{ document.images[img].src = '/images/' + image_src }

function ExplorerFix()
{ for (a in document.links) document.links[a].onfocus = document.links[a].blur }

if (document.all) document.onmousedown = ExplorerFix;

PreloadImages('home', 71, 24, 'gif')
PreloadImages('about_us', 89, 24, 'gif')
PreloadImages('contact_us', 103, 24, 'gif')
PreloadImages('links', 69, 24, 'gif')
PreloadImages('suggest_a_collection', 159, 24, 'gif')
PreloadImages('discussion_area', 133, 24, 'gif')
PreloadImages('site_search', 144, 24, 'gif')
//-->