window.onload=function(){
	$("head").append('<scr'+'ipt src="http://api.twitter.com/1/statuses/user_timeline.json?screen_name=bighombre&callback=onGotTweets"></scr'+'ipt>');
}
function onGotTweets(data){
	if(typeof(data[0])=="undefined")return;
	data=data[0];
	if(typeof(data.user)=="undefined")return;
	var name=data.user.name;
	var txt=data.text;
	var perma="http://twitter.com/"+name+"/status/"+data.id_str;
	$("#topmsg-txt").attr("title",txt);
	if(txt.length>50)txt=txt.substring(0,50)+"...";
	var msg=name+': '+txt;
	$("#topmsg-txt").click(function(){
		window.open(perma);
	}).html(msg);
	$("#topmsg-actions #tatime").attr("href",perma).html(prettyDate(data.created_at));
	$("#tarep").attr("href","http://twitter.com/intent/tweet?in_reply_to="+data.id_str);
	$("#taret").attr("href","http://twitter.com/intent/retweet?tweet_id="+data.id_str);
	$("#tafav").attr("href","http://twitter.com/intent/favorite?tweet_id="+data.id_str);
	$("#topmsg").fadeIn('fast');
}


/*
 * 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;
			
	return day_diff == 0 && (
			diff < 60 && "just now" ||
			diff < 120 && "1 minute ago" ||
			diff < 3600 && Math.floor( diff / 60 ) + " minutes ago" ||
			diff < 7200 && "1 hour ago" ||
			diff < 86400 && Math.floor( diff / 3600 ) + " hours ago") ||
		day_diff == 1 && "Yesterday" ||
		day_diff < 7 && day_diff + " days ago" ||
		day_diff < 31 && Math.ceil( day_diff / 7 ) + " weeks ago";
}

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

