Sweater will slightly shrink after wash, so if in between sizes, get the larger size.
$('.product-image').hover(function() {
// On mouse in, change the source of the image
var secondImage = $(this).data('second-image');
$(this).attr('src', secondImage);
}, function() {
// On mouse out, change it back
var firstImage = $(this).data('first-image');
$(this).attr('src', firstImage);
});
$('.product-image').on('t
Choosing a selection results in a full page refresh.
Press the space key then arrow keys to make a selection.