<!--
if (document.images) {

homeon = new Image();
homeon.src = "/images/home/buttons/home-on2.gif";
homeoff = new Image();
homeoff.src = "/images/home/buttons/home-off2.gif";

abouton = new Image();
abouton.src = "/images/home/buttons/about-on2.gif";
aboutoff = new Image();
aboutoff.src = "/images/home/buttons/about-off2.gif";

clienton = new Image();
clienton.src = "/images/home/buttons/client-info-on2.gif";
clientoff = new Image();
clientoff.src = "/images/home/buttons/client-info-off2.gif";

clubon = new Image();
clubon.src = "/images/home/buttons/club-on2.gif";
cluboff = new Image();
cluboff.src = "/images/home/buttons/club-off2.gif";

awardsinon = new Image();
awardsinon.src = "/images/home/buttons/awards-industry-on.gif";
awardsinoff = new Image();
awardsinoff.src = "/images/home/buttons/awards-industry-off.gif";

awardson = new Image();
awardson.src = "/images/home/buttons/awards-on2.gif";
awardsoff = new Image();
awardsoff.src = "/images/home/buttons/awards-off2.gif";

employeeon = new Image();
employeeon.src = "/images/home/buttons/employee-on2.gif";
employeeoff = new Image();
employeeoff.src = "/images/home/buttons/employee-off2.gif";

submiton = new Image();
submiton.src = "/images/home/buttons/submit-resume-on2.gif";
submitoff = new Image();
submitoff.src = "/images/home/buttons/submit-resume-off2.gif";


whereon = new Image();
whereon.src = "/images/home/buttons/where-fit-on2.gif";
whereoff = new Image();
whereoff.src = "/images/home/buttons/where-fit-off2.gif";

gsaon = new Image();
gsaon.src = "/images/home/buttons/gsa-on2.gif";
gsaoff = new Image();
gsaoff.src = "/images/home/buttons/gsa-off2.gif";

newson = new Image();
newson.src = "/images/home/buttons/news-on2.gif";
newsoff = new Image();
newsoff.src = "/images/home/buttons/news-off2.gif";

contacton = new Image();
contacton.src = "/images/home/buttons/contact-on2.gif";
contactoff = new Image();
contactoff.src = "/images/home/buttons/contact-off2.gif";


}

function img_act(imgName) {
	if (document.images) {
	imgOn = eval(imgName + "on.src");
	document [imgName].src = imgOn;
	}
}

function img_inact(imgName) {
	if (document.images) {
	imgOff = eval(imgName + "off.src");
	document [imgName].src = imgOff;
	}
}
//-->
