<!-- hide from none JavaScript Browsers
	
img1_on = new Image(41,12);
img1_on.src="./images/home_on.gif";
img1_off = new Image(41,12);
img1_off.src="./images/home_off.gif";

img2_on = new Image(104,12);
img2_on.src="./images/profile_on.gif";
img2_off = new Image(104,12);
img2_off.src="./images/profile_off.gif";

img3_on = new Image(111,12);
img3_on.src="./images/support_on.gif";
img3_off = new Image(111,12);
img3_off.src="./images/support_off.gif";

img4_on = new Image(101,12);
img4_on.src="./images/policies_on.gif";
img4_off = new Image(101,12);
img4_off.src="./images/policies_off.gif";

img5_on = new Image(104,12);
img5_on.src="./images/contact_on.gif";
img5_off = new Image(104,12);
img5_off.src="./images/contact_off.gif";

img6_on = new Image(104,12);
img6_on.src="./images/checkout_on.gif";
img6_off = new Image(104,12);
img6_off.src="./images/checkout_off.gif";

function over_image(parm_name)
{
        document[parm_name].src = eval(parm_name + "_on.src");
}
function off_image(parm_name)
{
        document[parm_name].src = eval(parm_name + "_off.src");
}

// - stop hiding -->