function highlight_button(button, wide) {
	button.className='button_background_active' + wide;
}

function unhighlight_button(button, page, wide) {
	if (!document.location.href.match(page))
		button.className='button_background' + wide;
}
