$(document).ready(function(){

	var username='bathlifeawards'; // set user name
	var format='json'; // set format, you really don't have an option on this one
	var url='http://api.twitter.com/1/statuses/user_timeline/'+username+'.'+format+'?callback=?'; // make the url

	$.getJSON(url,function(tweet){ // get the tweets
		$("#latest-tweet").html(tweet[0].text); // get the first tweet in the response and place it inside the div
	});

	$("#latest-tweet").click(function() { window.location = 'http://twitter.com/#!/Bathlifeawards'; return false; });
	
});
