(function(C){C.timeago=function(G){if(G instanceof Date){return A(G)}else{if(typeof G=="string"){return A(C.timeago.parse(G))}else{return A(C.timeago.parse(C(G).attr("title")))}}};var F=C.timeago;C.extend(C.timeago,{settings:{refreshMillis:60000,allowFuture:false,strings:{prefixAgo:null,prefixFromNow:null,suffixAgo:"ago",suffixFromNow:"from now",ago:null,fromNow:null,seconds:"less than a minute",minute:"about a minute",minutes:"%d minutes",hour:"about an hour",hours:"about %d hours",day:"a day",days:"%d days",month:"about a month",months:"%d months",year:"about a year",years:"%d years"}},inWords:function(K){var L=this.settings.strings;var H=L.prefixAgo;var P=L.suffixAgo||L.ago;if(this.settings.allowFuture){if(K<0){H=L.prefixFromNow;P=L.suffixFromNow||L.fromNow}K=Math.abs(K)}var N=K/1000;var G=N/60;var M=G/60;var O=M/24;var I=O/365;var J=N<45&&D(L.seconds,Math.round(N))||N<90&&L.minute||G<45&&D(L.minutes,Math.round(G))||G<90&&L.hour||M<24&&D(L.hours,Math.round(M))||M<48&&L.day||O<30&&D(L.days,Math.floor(O))||O<60&&L.month||O<365&&D(L.months,Math.floor(O/30))||I<2&&L.year||D(L.years,Math.floor(I));return C.trim([H,J,P].join(" "))},parse:function(H){var G=C.trim(H);G=G.replace(/-/,"/").replace(/-/,"/");G=G.replace(/T/," ").replace(/Z/," UTC");G=G.replace(/([\+-]\d\d)\:?(\d\d)/," $1$2");return new Date(G)}});C.fn.timeago=function(){var H=this;H.each(B);var G=F.settings;if(G.refreshMillis>0){setInterval(function(){H.each(B)},G.refreshMillis)}return H};function B(){var G=F.parse(this.title);if(!isNaN(G)){C(this).text(A(G))}return this}function A(G){return F.inWords(E(G))}function E(G){return(new Date().getTime()-G.getTime())}function D(G,H){return G.replace(/%d/i,H)}if(C.browser.msie&&C.browser.version<7){document.createElement("abbr")}})(jQuery);