function humane_date(date_str){
	var serverTimeOffset=420; //MUST BE SET FOR NEW SERVER
	var time_formats=[[60,'Just Now'],[90,'1 Minute'],[3600,'Minutes',60],[5400,'1 Hour'],[86400,'Hours',3600],[129600,'1 Day'],[604800,'Days',86400],[907200,'1 Week'],[2628000,'Weeks',604800],[3942000,'1 Month'],[31536000,'Months',2628000],[47304000,'1 Year'],[3153600000,'Years',31536000],[4730400000,'1 Century']];
	var time=(''+date_str).replace(/-/g,"/").replace(/[TZ]/g," ");
	var dt=new Date();
	var seconds=((dt-new Date(time)+(dt.getTimezoneOffset()-serverTimeOffset)*60000)/1000);//
	var token=' Ago',i=0,format;
	if(seconds<0){
		seconds=Math.abs(seconds);
		token='';
	}
	while(format=time_formats[i++]){
		if(seconds<format[0]){
			if(format.length==2){return format[1]+(i>1?token:'');}
			else{return Math.round(seconds/format[2])+' '+format[1]+(i>1?token:'');}
		}
	}
	if(seconds>4730400000){return Math.round(seconds/4730400000)+' Centuries'+token;}
	return date_str;
}
$(document).ready(function(){
	$(".humane_date").each(function(){
		$(this).attr('title',$(this).text());
		$(this).text(humane_date($(this).text()));
		$(this).removeClass('humane_date');
	});
});
