function hover(elem) {
	elem.style.background = '#eaeaea';
	elem.style.cursor = 'pointer'
}

function unhover(elem) {
	elem.style.background='#ffffff';
	elem.style.cursor = 'default'
}

function goto(here) {
	document.location = here;
}