﻿$(function(){
	$.jReplace = function(sectionId){
		var objSection = "#" + sectionId;
		$(objSection).find("img").each(function(i){
			$(this).attr("src", $(this).attr("src").replace("talk.imbc.com","img.imbc.com"));
		});
	};
});

