function swapImage(id) {
	var o = document.getElementById(id);
	o.firstChild.style.backgroundPosition = "left bottom";
}

function returnImage(id) {
	var o = document.getElementById(id);
	o.firstChild.style.backgroundPosition = "left top";
}