Event.observe(window, 'load', init);

function init() {
  rTLines();
}


function rTLines(){
  var j = 0;
  $$('*.table tbody tr').each(function(tog, i){
    tog.removeClassName("zebracolor");
    tog.removeClassName("i");
    if(tog.visible()){
      if(j%2==1) {
        tog.addClassName("zebracolor");
        tog.addClassName("i");
      }
    }else{
      j--;
    }
    j++;
  });
}