


if (document.images)   {
    b01on = new Image(); b01on.src = "images/ohome.gif";
	b02on = new Image(); b02on.src = "images/oabout.gif";
	b03on = new Image(); b03on.src = "images/ovirtual.gif";
	b04on = new Image(); b04on.src = "images/osell.gif";
	b05on = new Image(); b05on.src = "images/onews1.gif";
	b06on = new Image(); b06on.src = "images/oenq.gif";
	b07on = new Image(); b07on.src = "images/oother1.gif";
	b08on = new Image(); b08on.src = "images/ocontact1.gif";

    b01off = new Image(); b01off.src = "images/nhome.gif";
	b02off = new Image(); b02off.src = "images/nabout.gif";
	b03off = new Image(); b03off.src = "images/nvirtual.gif";
	b04off = new Image(); b04off.src = "images/nsell.gif";
	b05off = new Image(); b05off.src = "images/nnews1.gif";
	b06off = new Image(); b06off.src = "images/nenq.gif";
	b07off = new Image(); b07off.src = "images/nother1.gif";
	b08off = new Image(); b08off.src = "images/ncontact1.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");
        }
	}
