﻿$(function() {
    $('.RadTabStrip_ProductTab .rtsLI').each(function(index, element) {
        if ((index + 1) % 5 == 0) {
            $(element).addClass('right-side');
        }
        if ((index) % 5 == 0) {
            $(element).addClass('left-side');
        }
    });
});
