$(document).ready(function() {
	$('#tweet').click(function() { location.href='http://twitter.com/nsewDIGITAL'; });
	$.getJSON('http://api.twitter.com/1/statuses/user_timeline/nsewDIGITAL.json?count=1&callback=?', function(data){
		var tweet = data[0].text.replace(/(https?:\/\/[^\s]+|www\.[^\s]+)/g, "<a href='$1'>$1</a>");
		tweet=tweet.replace(/(?:^|\s)#([^\s]+)\s/g, "<a href='http://twitter.com/search?q=%23$1'> #$1</a> ");
		tweet=tweet.replace(/@([^\s]+)/g, '<a href="http://twitter.com/$1">@$1</a>');
		$('#tweet div').hide().html(tweet).fadeIn();
	});
});
