function switchOn(o) {
	o.style.backgroundPosition = "left bottom";
	o.style.cursor = "pointer";
}

function switchOff(o) {
	o.style.backgroundPosition = "left top";
	o.style.cursor = "pointer";
}
