/*
 * JavaScript Pretty Date
 * Copyright (c) 2008 John Resig (jquery.com)
 * Licensed under the MIT license.
 */

// Takes an ISO time and returns a string representing how
// long ago the date represents.
function prettyDate(time){
	var date = new Date((time || "").replace(/-/g,"/").replace(/[TZ]/g," ")),
		diff = (((new Date()).getTime() - date.getTime()) / 1000),
		day_diff = Math.floor(diff / 86400);
			
	if ( isNaN(day_diff) || day_diff < 0 || day_diff >= 31 )
		return time;
			
	return day_diff == 0 && (
			diff < 60 && "justo ahora" ||
			diff < 120 && "hace 1 minuto" ||
			diff < 3600 && "hace " + Math.floor( diff / 60 ) + " minutos" ||
			diff < 7200 && "hace 1 hora" ||
			diff < 86400 && "hace " + Math.floor( diff / 3600 ) + " horas") ||
		day_diff == 1 && "ayer" || 
		day_diff < 7 && "hace " + day_diff + " dias" ||
		day_diff < 31 && "hace " + Math.ceil( day_diff / 7 ) + " semanas";
}

// If jQuery is included in the page, adds a jQuery plugin to handle it as well
if ( typeof jQuery != "undefined" )
	jQuery.fn.prettyDate = function(){
		return this.each(function(){
			var date = prettyDate(this.title);
			if ( date )
				jQuery(this).text( date );
		});
	};
