// JavaScript Document

$(document).ready(function(){

	$(".notify .close").click(function(){
		$(this).parents(".notify").animate({ opacity: "hide" }, "slow");
	});

	$.getJSON("http://twitter.com/statuses/user_timeline/tacticalsports.json?callback=?", function(data) {
		$(".twitter a").html(data[0].text);
	});
});

