wtf7
$j.each(item.parent().parent().parent().next().children('.inner').children().children('.row').children('.details'),function(){
var qty = $j(this).children().children('.kit_qty').html();
$j(this).children().children('.kit_qty').html(json.itemsQty);
var price = $j(this).children().children('.total').children().children('.price').html();
totalSave = totalSave+((price.substr(1,price.length)/qty)*json.itemsQty);
$j(this).children().children('.total').children().children('.price').html("$"+(price.substr(1,price.length)/qty)*json.itemsQty);
});