homeoff = new Image();
homeoff.src = "images/homeoff.gif";

homeon = new Image();
homeon.src = "images/homeon.gif";

contactoff = new Image();
contactoff.src = "images/contactoff.gif";

contacton = new Image();
contacton.src = "images/contacton.gif";

aboutusoff = new Image();
aboutusoff.src = "images/aboutusoff.gif";

aboutuson = new Image();
aboutuson.src = "images/aboutuson.gif";

applicationoff = new Image();
applicationoff.src = "images/applicationoff.gif";

applicationon = new Image();
applicationon.src = "images/applicationon.gif";

guidelinesoff = new Image();
guidelinesoff.src = "images/guidelinesoff.gif";

guidelineson = new Image();
guidelineson.src = "images/guidelineson.gif";

grantsoff = new Image();
grantsoff.src = "images/grantsoff.gif";

grantson = new Image();
grantson.src = "images/grantson.gif";

financialsoff = new Image();
financialsoff.src = "images/financialsoff.gif";

financialson = new Image();
financialson.src = "images/financialson.gif";

currentsection = "main";

function img_out(imgName){
if (currentsection != imgName) {
	imgChange(imgName,'off');
}
}

function img_over(imgName){
if (currentsection != imgName) {
	imgChange(imgName,'on');
}
}

function imgChange(imgName,mode) {
document [imgName].src = eval(imgName + mode + ".src");
}