// buttons loader and rollovers

if (document.images) {
var home2n = new Image();
home2n.src = "images/home2n.gif";
var home2a = new Image();
home2a.src = "images/home2a.gif";
var homen = new Image();
homen.src = "images/homen.gif";
var homea = new Image();
homea.src = "images/homea.gif";

var load = new Image();
load.src = "images/load.jpg";
}

function act(imgName) {
if (document.images)
document[imgName].src = eval(imgName + "a.src");
}

function inact(imgName) {
if (document.images)
document[imgName].src = eval(imgName + "n.src");
}

