/*
 * 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 = time;//new Date((time || "").replace(/-/g,"/").replace(/[TZ]/g," ")),
		diff = (((new Date()).getTime() - date.getTime()) / 1000),
		day_diff = Math.floor(diff / 86400);
		month_diff = Math.floor(diff / 2678400 );
			
	if ( isNaN(day_diff) || day_diff < 0 || day_diff >= 256 )
		return;
			
	return day_diff == 0 && (
			diff < 60 && "Hace " + Math.floor( diff ) + " segundos" ||//"Hace menos de 1 minuto" ||
			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 + " d&iacute;as" ||
		day_diff < 62 && "Hace " + Math.ceil( day_diff / 7 ) + " semanas" ||
		month_diff < 12 && "Hace " + month_diff + " meses";
}

// 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 );
		});
	};

