$(document).ready(function()
{
	$("a.refresh").bind("click", function()
	{
		$(this).addClass("loading");
		
		$("ul.intheforum").load("/forum/latest/5", function()
		{
			$("a.refresh").removeClass("loading");
		});
		
		return false;
	});
	
	getTwitters('tweets', { 
		id: 'jtsgames', 
		count: 1, 
		enableLinks: true, 
		ignoreReplies: false,
		withFriends: true,
		clearContents: true,
		template: '<span class="text">%text%</span><span class="time">%time% by <a href="http://twitter.com/%user_screen_name%" target="_blank">@%user_screen_name%</a></span>'
	});
});