﻿$(function() {
    $("div[class=clear]", ".lstOther").remove();
    $(".lstServices .item").each(function() {
        index = $(".lstServices .item").index($(this));
        if ((index) % 3 == 0) {
            $(this).before("<div class='clear'></div>");

        }
        if ((index) % 3 == 2) {
            $(this).css({ "margin-right": "0px" });
        }
    })
})
