function documentOnload() {
	document.body.style.height = document.body.scrollHeight;
}

function hoverMenubar(menuItem, menuColor, mouseout) {
	if(mouseout) {
		menuItem.style.background = '#ffffff';
		menuItem.childNodes[1].firstChild.style.color = '';
		menuItem.onmouseout = function() {};
	}
	else {
		menuItem.style.background = menuColor;
		menuItem.childNodes[1].firstChild.style.color = '#FFFFFF';
		menuItem.onmouseout = function() {hoverMenubar(menuItem, menuColor, true)};
	}
}



window.onload = documentOnload;