function ChangeZoomImage(url_medium, url_high)
{
	$("#zoom_image").fadeOut("slow", function() {
		document.getElementById('zoom_anchor').href = url_high;
		document.getElementById('zoom_image').src = url_medium;
		$("#zoom_image").fadeIn("slow");
	});
}

