<!--
if (document.images) {            
            homeon = new Image();      
            homeon.src = "images/home-on.gif";
			abouton = new Image();      
            abouton.src = "images/about-on.gif";
			assesson = new Image();      
            assesson.src = "images/assess-on.gif";
			execon = new Image();      
            execon.src = "images/exec-on.gif";
			ceoon = new Image();      
            ceoon.src = "images/ceo-on.gif";
			teamon = new Image();      
            teamon.src = "images/team-on.gif";
			orgon = new Image();      
            orgon.src = "images/org-on.gif";
			mergeon = new Image();      
            mergeon.src = "images/merge-on.gif";
			startupon = new Image();      
            startupon.src = "images/startup-on.gif";
			ventureon = new Image();      
            ventureon.src = "images/venture-on.gif";
			clienton = new Image();      
            clienton.src = "images/client-on.gif";
			contacton = new Image();      
            contacton.src = "images/contact-on.gif";
			affiliateson = new Image();      
            affiliateson.src = "images/affiliates-on.gif";
			haffiliateson = new Image();      
            haffiliateson.src = "images/haffiliates-on.gif";

            homeoff = new Image();      
            homeoff.src = "images/home-off.gif";
			aboutoff = new Image();      
            aboutoff.src = "images/about-off.gif";
			assessoff = new Image();      
            assessoff.src = "images/assess-off.gif";
			execoff = new Image();      
            execoff.src = "images/exec-off.gif";
			ceooff = new Image();      
            ceooff.src = "images/ceo-off.gif";
			teamoff = new Image();      
            teamoff.src = "images/team-off.gif";
			orgoff = new Image();      
            orgoff.src = "images/org-off.gif";
			mergeoff = new Image();      
            mergeoff.src = "images/merge-off.gif";
			startupoff = new Image();      
            startupoff.src = "images/startup-off.gif";
			ventureoff = new Image();      
            ventureoff.src = "images/venture-off.gif";
			clientoff = new Image();      
            clientoff.src = "images/client-off.gif";
			contactoff = new Image();      
            contactoff.src = "images/contact-off.gif";
			affiliatesoff = new Image();      
            affiliatesoff.src = "images/affiliates-off.gif"; 
			haffiliatesoff = new Image();      
            haffiliatesoff.src = "images/haffiliates-off.gif"; }


function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}


function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

-->