<!--
//Mouse over/out JavaScript program
//Original from www.vbulletin.com
//Modified for use at paladinet.com

        if (document.images) {

	//Mouse Over Images
		//Main Menu Buttons
            img01on = new Image(); img01on.src = "http://www.paladinet.com/audio/images/home_dn.gif";
            img02on = new Image(); img02on.src = "http://www.paladinet.com/audio/images/systems_dn.gif";            
            img03on = new Image(); img03on.src = "http://www.paladinet.com/audio/images/equip_dn.gif";
            img04on = new Image(); img04on.src = "http://www.paladinet.com/audio/images/about_dn.gif";
            img05on = new Image(); img05on.src = "http://www.paladinet.com/audio/images/contact_dn.gif";

	//Mouse Out Images
		//Main Menu Buttons
            img01off = new Image(); img01off.src = "http://www.paladinet.com/audio/images/home_up.gif";
            img02off = new Image(); img02off.src = "http://www.paladinet.com/audio/images/systems_up.gif";            
            img03off = new Image(); img03off.src = "http://www.paladinet.com/audio/images/equip_up.gif";
            img04off = new Image(); img04off.src = "http://www.paladinet.com/audio/images/about_up.gif";
            img05off = new Image(); img05off.src = "http://www.paladinet.com/audio/images/contact_up.gif";

        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// -->
