function zoom() {
	if($('zoomlink').innerHTML == "Larger text") {
		$('bodytext').style.fontSize = "1.5em";
		$('bodytext').style.lineHeight = "2em";
		$('zoomlink').innerHTML = "Smaller text";
	}
	else {
		$('bodytext').style.fontSize = "1em";
		$('bodytext').style.lineHeight = "1.6em";
		$('zoomlink').innerHTML = "Larger text";
	}
}
function logoover() { $('menu_i_').firstChild.style.paddingRight = "10px"; }
function logoout() { $('menu_i_').firstChild.style.paddingRight = "5px"; }
