<!--
//
var browser=false;
if (document.images)
browser=true;

if (browser) { 
button1 = new Image();
button1.src = "images/menu1.gif";
button1on = new Image();
button1on.src = "images/menu1a.gif";

button2 = new Image();
button2.src = "images/menu2a.gif";
button2on = new Image();
button2on.src = "images/menu2a.gif";

button3 = new Image();
button3.src = "images/menu3.gif";
button3on = new Image();
button3on.src = "images/menu3a.gif";

button4 = new Image();
button4.src = "images/menu4.gif";
button4on = new Image();
button4on.src = "images/menu4a.gif";

button5 = new Image();
button5.src = "images/menu5.gif";
button5on = new Image();
button5on.src = "images/menu5a.gif";

button6 = new Image();
button6.src = "images/menu6.gif";
button6on = new Image();
button6on.src = "images/menu6a.gif";

button7 = new Image();
button7.src = "images/menu7.gif";
button7on = new Image();
button7on.src = "images/menu7a.gif";

button8 = new Image();
button8.src = "images/menu8.gif";
button8on = new Image();
button8on.src = "images/menu8a.gif";

button9 = new Image();
button9.src = "images/menu9.gif";
button9on = new Image();
button9on.src = "images/menu9a.gif";

button10 = new Image();
button10.src = "images/menu10.gif";
button10on = new Image();
button10on.src = "images/menu10a.gif";

button11 = new Image();
button11.src = "images/menu11.gif";
button11on = new Image();
button11on.src = "images/menu11a.gif";

button12 = new Image();
button12.src = "images/menu12.gif";
button12on = new Image();
button12on.src = "images/menu12a.gif";

}
function imageFlip2(imageID,imageName) {

     if (browser) {
document.images[imageID].src = eval(imageName + ".src");
}

}

// -- End of JavaScript code -------------- -->

