jQuery.fn.zebra = function(options){
 
     // настройки по умолчанию
     var options = jQuery.extend({
       bgEven: 'none', 
       bgOdd: '#dff2f4'
     },options);
      
     return this.each(function() {
       
       jQuery(this).find('tr:odd')
          .css('background', options.bgOdd)   
       
       jQuery(this).find('tr:even')
          .css('background-color', options.bgEven) 
             
     });
 
};
