var SPOTLIGHT = SPOTLIGHT || {};

jQuery(function () {
    SPOTLIGHT.forum.initialize();
});

SPOTLIGHT.forum = (function () {
    var that = {},
        $    = jQuery;
        
    that.initialize = function () {
        $('.smalllinks a:last-child').addClass('last-child');
        $('#forumTools a:first-child').addClass('first-child');
        $('.tableRowHeadingBold:first-child').addClass('first-child');
        $('.tableCellTwo:first-child, .tableCellOne:first-child')
            .addClass('first-child');
    };
    
    return that;
}())
