function hoverOver( button ) {
	button.style.backgroundPosition = "0 -25px";
	button.style.cursor = "hand";
}

function hoverOff( button ) {
	button.style.backgroundPosition = "0 0";
	button.style.cursor = "normal";
}
