function jTable(table,opts)
{
  bg="background";
  tables = $(table);

  jQuery.each(tables,function()
  {
    r=1;
    jQuery.each($(this).find("tr"),function()
                  {
                    r=1-r;
                    if(r==1)
                    {
                      var alt=opts.stripe;
                      $(this).css(bg,alt);
                    }
                    else
                    {
                      var alt=opts.out;
                    }
                    $(this).mouseover(function(){$(this).css(bg,opts.over)});
                    $(this).mouseout(function(){$(this).css(bg,alt)});

                });
  });
}
