﻿
$(document).ready(function() {

  $('div.swatches a:not(.current)').live('click', function(e) {
    e.preventDefault();
    $(this).closest('div.product-item').load(this.href.replace('Product/Detail', 'Product/Item') + '  div.product-image, div.product-details');
  });

});

