if (document.images) {







  graphic1on = new Image();



  graphic1on.src = "../images/2ndlevmenuon_01.gif";







  graphic2on = new Image();



  graphic2on.src = "../images/2ndlevmenuon_02.gif";







  graphic3on = new Image();



  graphic3on.src = "../images/2ndlevmenuon_03.gif";







  graphic4on = new Image();



  graphic4on.src = "../images/2ndlevmenuon_04.gif";







  graphic5on = new Image();



  graphic5on.src = "../images/2ndlevmenuon_05.gif";















  graphic1off = new Image();



  graphic1off.src = "../images/2ndlevmenu_01.gif";







  graphic2off = new Image();



  graphic2off.src = "../images/2ndlevmenu_02.gif";







  graphic3off = new Image();



  graphic3off.src = "../images/2ndlevmenu_03.gif";







  graphic4off = new Image();



  graphic4off.src = "../images/2ndlevmenu_04.gif"







  graphic5off = new Image();



  graphic5off.src = "../images/2ndlevmenu_05.gif";}















function turnOn(imageName) {



  if (document.images) {



    document[imageName].src = eval(imageName + "on.src");



  }



}







function turnOff(imageName) {



  if (document.images) {



    document[imageName].src = eval(imageName + "off.src");



  }



}



