(function($) {
	$(function() {
		$("div.product-images img").not(":first").hide();
		$("img.image-xs").click(function() {
			$("div.product-images img").hide().eq($("img.image-xs").index(this)).show();
		});
	});
})(jQuery);
