﻿$.fn.Style = function() {
    this.each(function() {
        $("tbody tr:even", this).addClass("even");
    });
};
