// Script to handle image rollovers.
// If the browser recognises the document.images 
// object, then it can cope with image rollovers.
// Netscape v3.0 or later, MSIE v4.0 or later.

if (document.images) {
   homeon = new Image(44,40);
   homeon.src = "/images/navbar/home2.gif";
   homeoff = new Image(44,40);
   homeoff.src = "/images/navbar/home1.gif";
   mapon = new Image(44,40);
   mapon.src = "/images/navbar/map2.gif";
   mapoff = new Image(44,40);
   mapoff.src = "/images/navbar/map1.gif";
   abouton = new Image(108,27);
   abouton.src = "/images/navbar/about2.gif";
   aboutoff = new Image(108,27);
   aboutoff.src = "/images/navbar/about1.gif";
   brancheson = new Image(91,27);
   brancheson.src = "/images/navbar/branches2.gif";
   branchesoff = new Image(91,27);
   branchesoff.src = "/images/navbar/branches1.gif";
   educationon = new Image(92,27);
   educationon.src = "/images/navbar/education2.gif";
   educationoff = new Image(92,27);
   educationoff.src = "/images/navbar/education1.gif";
   archiveon = new Image(108,26);
   archiveon.src = "/images/navbar/archive2.gif";
   archiveoff = new Image(108,26);
   archiveoff.src = "/images/navbar/archive1.gif";
   fleadhon = new Image(91,26);
   fleadhon.src = "/images/navbar/fleadh2.gif";
   fleadhoff = new Image(91,26);
   fleadhoff.src = "/images/navbar/fleadh1.gif";
   concerton = new Image(92,26);
   concerton.src = "/images/navbar/concert2.gif";
   concertoff = new Image(92,26);
   concertoff.src = "/images/navbar/concert1.gif";
   bruon = new Image(108,27);
   bruon.src = "/images/navbar/bru2.gif";
   bruoff = new Image(108,27);
   bruoff.src = "/images/navbar/bru1.gif";
   culturlannon = new Image(91,27);
   culturlannon.src = "/images/navbar/culturlann2.gif";
   culturlannoff = new Image(91,27);
   culturlannoff.src = "/images/navbar/culturlann1.gif";
   seisiunon = new Image(92,27);
   seisiunon.src = "/images/navbar/seisiun2.gif";
   seisiunoff = new Image(92,27);
   seisiunoff.src = "/images/navbar/seisiun1.gif";

}
function rollon(imgName) {
   if (document.images) {
      document[imgName].src = eval(imgName + "on.src");
   }
}
function rolloff(imgName) {
   if (document.images) {
      document[imgName].src = eval(imgName + "off.src");
   }
}
