// Go to the URL specified when a menu item is clicked
function menuClick( url )
{
   window.location.href = url;
}

// Change the menu item colors when the mouse rolls over the item
function menuNavigation( tableCellRef, menuText, backgroundColor, fontColor, isMouseOver )
{
   // This sets the background color for the table cell
   tableCellRef.style.backgroundColor     = backgroundColor;
   // This sets the font color for the <A href=...> childnode
   tableCellRef.childNodes[0].style.color = fontColor;

   // var footballImgHtml = "&nbsp;<img src='/images/footballfornavmenu.png' border='0' width='20' height='20'/>";

   /*
   if ( isMouseOver ) {
       tableCellRef.childNodes[0].innerHTML = menuText + footballImgHtml;
   } else {
       tableCellRef.childNodes[0].innerHTML = menuText;
   }
   */
}

