/**
 * Product Detail Image Slider
 */
protouch.productslider = function () {
	if ($('#thumbslider .thumb').length > 0 && !this.initialized.productimageslider) {
		var i = 0;
		$('#thumbslider .thumb').each(function(i) {
			this.imageindex = i;
			i ++;
			$(this).click ( function() {
				$('#thumbslider .thumb').removeClass("active");
				$(this).addClass("active");
				var leftvar = (this.imageindex)* (- protouch.settings.productimagesliderlength);
				$("#productimages .zoomimageslider").animate({left: leftvar+"px"});
				$("#ideasimages .zoomimageslider").animate({left: leftvar+"px"});
			});
		});
		this.initialized.productimageslider = true;
	}
};

