$(document).ready(function() {
		   // do stuff when DOM is ready	

		 $("#text img[src*=Thumb]").each(
				function (i) {
						//$(this).click(function() {
						link = $(this).attr("src");
						link=link.replace(/Thumb-/,"");
						$(this).wrap('<a href="' + link + '" target="_blank"></a>');							
							//});
					}
		);
		});
	