$(function() {
	if ($("body").is(".home")) {
		$('<div/>', {id: "newsticker"}).insertBefore("#main");
		$.getJSON("http://api.twitter.com/1/statuses/user_timeline.json?screen_name=DijkVanEmmerik&count=10&callback=?", function(data) {
			$("#newsticker").append("<ul></ul>");
			$.each(data, function() {
				var d = formatRelativeTwitterDate(this.created_at);
				$("#newsticker ul").append($('<li></li>').append($('<a href="http://twitter.com/!#DijkVanEmmerik"></a>').text(d + " - " + this.text)));
			});
			$("#newsticker ul").cycle({fx: "scrollDown"});
		});
	}
})
