function over(id, cursorVal) {
	document.getElementById(id).style.cursor = cursorVal;
}

function out(id) {
	document.getElementById(id).style.cursor = 'default';
}
