﻿$(document).ready(function() {
    // for all tables to be skinned
    $('.ltc_aanbod_agenda').each(function(index) {
        // for each tablerow
        $(this).find('tr').each(function(index) {
            $(this).addClass("test_tr");
            $(this).find("td:nth-child(1)").addClass("first");
            $(this).find("td:nth-child(2)").addClass("second");
        });
    });
});
