$(document).ready(function(){

	$(".imagine").click(function() {
		$(".imgprodus").attr("src", $(this).attr("src"));
		//console.log($(this).attr("src"));
		var str = $(this).attr("src");
		var newsrc = str.replace("/thumbs_galerie/", "/");
		//console.log(newsrc);
		$(".imgprodus").parent().attr("href", newsrc);
	});

			var options = {
				zoomWidth: 500,
				zoomHeight: 300,
				xOffset: -20,
				yOffset: 0,
				title: false,
				showPreload: false,
				position: "left" //and MORE OPTIONS
			};
			$('.jQZoom').jqzoom(options);

});

