﻿// JScript File


products_off = new Image
products_off.src = "/images/productsOFF.gif"

products_on = new Image
products_on.src = "/images/productsON.gif"

about_off = new Image
about_off.src = "/images/aboutOFF.gif"

about_on = new Image
about_on.src = "/images/aboutON.gif"

members_off = new Image
members_off.src = "/images/membersOFF.gif"

members_on = new Image
members_on.src = "/images/membersON.gif"

support_off = new Image
support_off.src = "/images/supportOFF.gif"

support_on = new Image
support_on.src = "/images/supportON.gif"

contact_off = new Image
contact_off.src = "/images/contactOFF.gif"

contact_on = new Image
contact_on.src = "/images/contactON.gif"

function changeImg(imgField,newImg){
	if(document.images) {
		document[imgField].src= eval(newImg + ".src")
	}
}

