﻿$(document).ready(function(){
    $("div.product-grid span div.item-box").each(function(){
        $(this).children("div.dpv-details").each(function(){
            $(this).children("div.dpv-product-item").each(function(){ 
                $(this).hide(); 
            });
            $(this).children("div.dpv-product-item").first().show();
        });
    });
    
    $(".dpv-wrapper").click(function(){    
        var index = $(this).index();
        $($(this).closest('div.item-box').children("div.dpv-details").children("div.dpv-product-item")).each(function(){
            $(this).hide();
        });
        $($(this).closest('div.item-box').children("div.dpv-details").children("div.dpv-product-item")[index]).show();
    });
});


$(document).ready(function(){
    $("div.product-grid span.item-box").each(function(){
        $(this).children("div.dpv-details").each(function(){
            $(this).children("div.dpv-product-item").each(function(){ 
                $(this).hide(); 
            });
            $(this).children("div.dpv-product-item").first().show();
        });
    });
    
    $(".dpv-wrapper").click(function(){    
        var index = $(this).index();
        $($(this).closest('span.item-box').children("div.dpv-details").children("div.dpv-product-item")).each(function(){
            $(this).hide();
        });
        $($(this).closest('span.item-box').children("div.dpv-details").children("div.dpv-product-item")[index]).show();
    });
});
