function table()
{ // css197
 if (document.getElementById)
 {
  tables = document.getElementsByTagName('table');
  for (i=0;i<tables.length;i++)
  { 
   if (tables[i].className == 'price')
   {
    trs = tables[i].getElementsByTagName('tr');
     for (j=0;j<trs.length;j++)
     { 
      if (trs[j].className != 'price_head')
      {
       trs[j].onmouseover = function() 
       { 
        this.className='price_sel'; return false; }
       trs[j].onmouseout = function() 
       { //alert(this.className);
        this.className='price1'; return false; }
      }
     }    
   }
  }
 }
}

function table2()
{ 
 if (document.getElementById)
 {
  tables = document.getElementsByTagName('table');
  for (i=0;i<tables.length;i++)
  { 
   if (tables[i].className == 'prod')
   {
    trs = tables[i].getElementsByTagName('tr');
     for (j=0;j<trs.length;j++)
     { 
       trs[j].onmouseover = function() 
       { 
        this.className='prod_sel'; return false; }
       trs[j].onmouseout = function() 
       { 
        this.className='prod1'; return false; }
     }    
   }
  }
 }
}

function table2td()
{ 
 if (document.getElementById)
 {
  tables = document.getElementsByTagName('table');
  for (i=0;i<tables.length;i++)
  { 
   if (tables[i].className == 'prod')
   {
    trs = tables[i].getElementsByTagName('td');
     for (j=0;j<trs.length;j++)
     { 
      if (trs[j].className == 'prod2') 
      {
       trs[j].onmouseover = function() 
       { 
        this.className='prod2_sel'; return false; }
       trs[j].onmouseout = function() 
       { 
        this.className='prod2'; return false; }
      } 
     }    
   }
  }
 }
}
