<!--

if (document.images)
{
            i1on = new Image();      
            i1on.src = "./images/mnu_home_1.gif";
            i2on = new Image();      
            i2on.src = "./images/mnu_profile_1.gif";
            i3on = new Image();      
            i3on.src = "./images/mnu_corporate_1.gif";
            i4on = new Image();      
            i4on.src = "./images/mnu_contact_1.gif";
            i5on = new Image();      
            i5on.src = "./images/mnu_shipping_1.gif";
            
	    // other pages off
            i1off = new Image();
            i1off.src = "./images/mnu_home_0.gif";
            i2off = new Image();
            i2off.src = "./images/mnu_profile_0.gif";
            i3off = new Image();
            i3off.src = "./images/mnu_corporate_0.gif";
            i4off = new Image();
            i4off.src = "./images/mnu_contact_0.gif";
            i5off = new Image();
            i5off.src = "./images/mnu_shipping_0.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"); }
}

// -->