function funkOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "on.src");
	}
}
function funkOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
	}
}
function switchOn(switchme,switchconstant) {
	if (document.images) {
		document[switchme].src = eval(switchconstant + "on.src");
	}
}
function switchOff(switchme,switchconstant) {
	if (document.images) {
		document[switchme].src = eval(switchconstant + "off.src");
	}
}