jQuery.fn.i18n=function(translation_hash,callback){return this.each(function(){$("*",this).contents().filter(function(){return this.nodeType==3}).each(function(){var text=$.trim(this.nodeValue);if(text.length>0&&translation_hash[text])
this.nodeValue=this.nodeValue.replace(text,translation_hash[text]);});var end=(new Date).getTime();if(callback.callback)
callback.callback();});};