function getTableCells()
{
  // find all table cells
  var tablecells = document.getElementsByTagName("TD");

  //loop trough all cells, and find out if there's a A anywhere
  for(var i=0; i < tablecells.length; i++)
  {
    tablecells[i].onclick = onclickhandler;
    tablecells[i].onmouseover = onmouseoverhandler;
    tablecells[i].onmouseout = onmouseouthandler;
  }
}

function onclickhandler()
{
  this.className = "hover";
  var link = this.getElementsByTagName("A");
  if(link[0])
    document.location.href = link[0];
}

function onmouseoverhandler()
{
  var link = this.getElementsByTagName("A");
  if(link[0])
  {
    this.className = "hover";
  }
}

function onmouseouthandler()
{
  this.className = "";
}

function setupSIFR()
{
  return;

  if(typeof sIFR == "function")
  {
    sIFR.setup();
    sIFR.replaceElement(named({sSelector:".sectiontitle", sFlashSrc:"http://sites2.b-lex.com/stavoor/design/sifr/daxpro2.swf", sColor:"#000000", sHoverColor:"#FFFFFF", sWmode:"transparent", sFlashVars:"textalign=left", nPaddingTop:"0", nPaddingBottom:"0", nPaddingLeft:"5", nPaddingRight:"0"}));
  };
}