var activeMenu = null

var thmb1 = new Image()
thmb1.src = "/public web site/galleries/events1smoff.jpg"
var thmb2 = new Image()
thmb2.src = "/public web site/galleries/events2smoff.jpg"
var thmb3 = new Image()
thmb3.src = "/public web site/galleries/events3smoff.jpg"
var thmb4 = new Image()
thmb4.src = "/public web site/galleries/events4smoff.jpg"

var thmb1on = new Image()
thmb1on.src = "/public web site/galleries/events1smon.jpg"
var thmb2on = new Image()
thmb2on.src = "/public web site/galleries/events2smon.jpg"
var thmb3on = new Image()
thmb3on.src = "/public web site/galleries/events3smon.jpg"
var thmb4on = new Image()
thmb4on.src = "/public web site/galleries/events4smon.jpg"

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("topnav");

for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}