$(function() {
	/* product zoom */
	$('.jqzoom').jqzoom({
		title: false,
		zoomWidth: 580,
		zoomHeight: 395,
		xOffset: 10,
		yOffset: 0,
		position: "right"
	});
	
	$("#thumbs a").click(function() {
		var id = $(this).attr("id");
		$(".jqzoom").hide();
		$("#" + id + "_lg").show("slow");
	});
	
	$("#language").change(function() {
		this.form.submit();
	});
});
