$(function(){
		   $("img").each(function(){
								  var src=$(this).attr("src");
							 
								  if(!src.match("resize.asp")&&src.match("infocenter")){
								  var width=$(this).attr("width");
								  var height=$(this).attr("height");
								  if(height=="") height=0;
								  if(width=="") width=0;
								 $(this).not(".org").attr("src", "/upload/resize.asp?img="+src+"&width="+width+"&height="+height);
								  }
	  });
 });