//
// code that deals with mouseovers and mouseout for the button images
// define the button image definitions
//
shieldon = new Image();
shieldon.src = "images/swordShield2.gif";
shieldoff = new Image();
shieldoff.src = "images/swordShield1.gif";

shieldson = new Image();
shieldson.src = "../images/swordShield2.gif";
shieldsoff = new Image();
shieldsoff.src = "../images/swordShield1.gif";

banneron = new Image();
banneron.src = "images/heraldry_banner2.gif";
banneroff = new Image();
banneroff.src = "images/heraldry_banner.gif";

bannerson = new Image();
bannerson.src = "../images/heraldry_banner2.gif";
bannersoff = new Image();
bannersoff.src = "../images/heraldry_banner.gif";

fleuron = new Image();
fleuron.src = "images/fleur_de_lys_alt.gif";
fleuroff = new Image();
fleuroff.src = "images/fleur_de_lys.gif";

//
// the functions that will flip the images depending upon the mouse action
//
function m1(gifName) {
        imgOn = eval(gifName + "on.src");
        document [gifName].src = imgOn;
}

function m0(gifName) {
        imgOff = eval(gifName + "off.src");
        document [gifName].src = imgOff;
}
