﻿$(document).ready(function() {
    $("table.striped > tbody > tr:nth-child(odd)").addClass('rowStyle');
    $("table.striped > tbody > tr:nth-child(even)").addClass('alternatingRowStyle');
});
