function menuOver(theCell, hoverStat) {
if (hoverStat) {
	theCell.style.backgroundImage = 'url("images/menu_bg_yellow.gi")';
	if ( document.getElementsByTagName ) {
		theCell.getElementsByTagName( 'a' )[0].style.color = '#c00';
		}
	} else {
		theCell.style.backgroundImage = 'url("images/menu_bg_white.gif")';
		if ( document.getElementsByTagName ) {
			theCell.getElementsByTagName( 'a' )[0].style.color = '#009900';
			}
		}
	}

function sideMenuOver(theCell, hoverStat) {
if (hoverStat) {
	theCell.style.backgroundImage = 'url("images/bg_menuarrow-o.gif")';
	if ( document.getElementsByTagName ) {
		theCell.getElementsByTagName( 'a' )[0].style.color = '#c00';
		}
	} else {
		theCell.style.backgroundImage = 'url("images/menu_bg_white.gif")';
		if ( document.getElementsByTagName ) {
			theCell.getElementsByTagName( 'a' )[0].style.color = '#009900';
			}
		}
	}

function menuClick ( theCell, url ) {
	menuOver( theCell, 0);
	window.location.href = url;
	}

