﻿jQuery(document).ready(function () {
    jQuery("#products-grid .product-item").each(function (index) {
        if (index % 3 == 0)
            $(this).addClass("first_item");
    });
    jQuery(".box_product_home li").each(function (index) {
        if (index % 3 == 0)
            $(this).addClass("li_first_item");
    });
}); 
