function loadT(selector){
	tpl=Object();
	tpl.selector=selector;
	tpl.template= $(selector).text();
	tpl.replace=function (key,val){
		while(this.template!=this.template.replace("{KEY:"+key+"}",val+""))
			this.template=this.template.replace("{KEY:"+key+"}",val+"");
		while(this.template!=this.template.replace("{key:"+key+"}",val+""))
			this.template=this.template.replace("{key:"+key+"}",val+"");
		while(this.template!=this.template.replace("{Key:"+key+"}",val+""))
			this.template=this.template.replace("{Key:"+key+"}",val+"");
	};
	tpl.next=function(){
		this.template= $(this.selector).text();
	};
	tpl.toString=function(){return this.template;};
	return tpl;
}