function hover(btn) {
	btn.className = 'button hover';
}

function hoverOff(btn) {
	btn.className = 'button';
}

function surf(url) {
	document.location = url;
}
