/* jQuery Simple Templates plugin 1.1.1 (c) 2008 Andrew Hedges */(function($){$.extend({tmpl:function(tmpl,vals){var rgxp,repr;tmpl=tmpl||'';vals=vals||{};rgxp=/#\{([^{}]*)}/g;repr=function(str,match){return typeof vals[match]==='string'||typeof vals[match]==='number'?vals[match]:str;};return tmpl.replace(rgxp,repr);}});})(jQuery);

