
function fwLoadImages() {
	if (document.images) 
	{
// navigation at top of page
// arranged in the same order as the html page

        	gbxdslon = new Image(125, 33);
        	gbxdslon.src = "../images/125x33dslA.jpg";
        	gbxdsloff = new Image(125, 33);
        	gbxdsloff.src = "../images/125x33dsl.jpg";

        	gbxdslhomeon = new Image(125, 33);
        	gbxdslhomeon.src = "../images/125x33dslhomeA.jpg";
        	gbxdslhomeoff = new Image(125, 33);
        	gbxdslhomeoff.src = "../images/125x33dslhome.jpg";

        	gbxhomeon = new Image(125, 33);
        	gbxhomeon.src = "../images/125x33homeA.jpg";
        	gbxhomeoff = new Image(125, 33);
        	gbxhomeoff.src = "../images/125x33home.jpg";

        	gbxt1on = new Image(125, 33);
        	gbxt1on.src = "../images/125x33t1A.jpg";
        	gbxt1off = new Image(125, 33);
        	gbxt1off.src = "../images/125x33t1.jpg";

        	gbxt3on = new Image(125, 33);
        	gbxt3on.src = "../images/125x33t3A.jpg";
        	gbxt3off = new Image(125, 33);
        	gbxt3off.src = "../images/125x33t3.jpg";

        	gbxt2on = new Image(125, 33);
        	gbxt2on.src = "../images/125x33t2A.jpg";
        	gbxt2off = new Image(125, 33);
        	gbxt2off.src = "../images/125x33t2.jpg";

        	osxlinuxon = new Image(125, 33);
        	osxlinuxon.src = "../images/125x33osxA.jpg";
        	osxlinuxoff = new Image(125, 33);
        	osxlinuxoff.src = "../images/125x33osx.jpg";

        	whiteon = new Image(125, 33);
        	whiteon.src = "../images/125x33whiteA.jpg";
        	whiteoff = new Image(125, 33);
        	whiteoff.src = "../images/125x33white.jpg";
	}
} // fwLoadImages()

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;
	}
}
