	var imgCount = 0;
	$(function(){
		$("a > img.imageZoom").each(function(){
			
			var INCLUDE_smallImage = $(this).attr("src").split("/");
			var INCLUDE_largeImage = $(this.parentNode).attr("href").split("/");
			
            var so = new SWFObject("/_includes/swf/imagezoom.swf?INCLUDE_smallImage="+"/products/"+INCLUDE_smallImage[1]+"/"+INCLUDE_smallImage[2]+"&INCLUDE_largeImage="+"/products/"+INCLUDE_largeImage[1]+"/"+INCLUDE_largeImage[2]+"/"+INCLUDE_largeImage[3], "zoomimage", "490", "700", "8", "#ffffff");
			so.addParam("wmode", "transparent");
			
            var tempdiv = document.createElement('div');
			$(tempdiv).attr('id', "flashImageReplace" + imgCount);
            tempdiv.innerHTML=so.getSWFHTML();
			$(this.parentNode).before($(tempdiv));
			$(this.parentNode).remove();
			}
		);
	});
