function LoadImages() {
	home_off = new Image()
	home_off.src = "imgs/home_off.gif"
	home_on = new Image()
	home_on.src = "imgs/home_on.gif"
	
	contact_off = new Image()
	contact_off.src = "imgs/contact_off.gif"
	contact_on = new Image()
	contact_on.src = "imgs/contact_on.gif"
	
	services_off = new Image()
	services_off.src = "imgs/services_off.gif"
	services_on = new Image()
	services_on.src = "imgs/services_on.gif"
	
	history_off = new Image()
	history_off.src = "imgs/history_off.gif"
	history_on = new Image()
	history_on.src = "imgs/history_on.gif"
	
	faq_off = new Image()
	faq_off.src = "imgs/faq_off.gif"
	faq_on = new Image()
	faq_on.src = "imgs/faq_on.gif"
}

function change(name,state) {
	if (document[name]) {
		if (state) document[name].src = eval(name + "_on.src")
		else document[name].src = eval(name + "_off.src")
	}
}

LoadImages()

