$(function() {
	img_height = $(".paint > img").attr("height");
	zoom_width = 940 - $(".paint > img").attr("width");
	var options = {
	    zoomWidth: zoom_width,
	    zoomHeight: img_height,
		xOffset: 10,
		yOffset: 0,
		position: "right",
		showEffect: "fadein",
		hideEffect: "fadeout"
	};
	$(".paint").jqzoom(options);
});