﻿(function($) {
    $(function() {
        // apply "even" class to every even row in each table
        var tables = $("table:not(.form-container)");
        tables.each(function() {
            $(this).find("tr:even").addClass("even");
        });
    });
})(jQuery);