//
//  (ñ) SiteLeader, 2005-2007 | http://www.siteleader.ru
//

function js_startup()
{
  return paint_tables();
}

//------------------------------
function paint_tables()
{
  var tbl=document.getElementsByTagName('table');

  for (i = 0; i < tbl.length; i++)
  {
    if (tbl[i].id == 'zebra-0')
    {
      for(j = 0; j < tbl[i].rows.length; j++)
      {
        tbl[i].rows[j].style.backgroundColor = j & 1 ? '#ffffff' : '#f2f2f2';
      }
    }
    else
    if (tbl[i].id == 'zebra-1')
    {
      for(j = 0; j < tbl[i].rows.length; j++)
      {
        tbl[i].rows[j].style.backgroundColor = j & 1 ? '#f2f2f2' : '#ffffff';
      }
    }
  }
  return false;
}
