//
//  (ñ) SiteLeader, 2005-2008 | http://www.siteleader.ru
//

var isMSIE = (navigator.userAgent && (navigator.userAgent.indexOf("MSIE") >= 0) && (navigator.appVersion.indexOf("Win") != -1)) ? 1 : 0;

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;
}

