
// Code specific to eerieinvestigations.com and related sites

// 'Light up' or down a navbar button table cell, used to workaround the
// fact that IE is not standards-complient for td :hover. Call with (this)

function navOn(cell)
{
  cell.className += ' navbuttonhover';
}
function navOff(cell)
{
  cell.className = cell.className.replace(" navbuttonhover", "");
}

