$(document).ready(function()
{
	$("a.comment_link").toggle(
		function()
		{
			var comment_link = $(this);
			$(comment_link).html("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Loading...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
			
			$.ajax(
			{
				 url: $(comment_link).attr("href"),
				 success: function(response)
				 {
					$(comment_link).siblings(".widget").html(response);
					$(comment_link).siblings(".widget").slideDown();
					$(comment_link).addClass("current");
					$(comment_link).text("Latest Comments");
				 }
			});
		
			return false;
		},
		function()
		{
			$(this).removeClass("current");
			$(this).siblings(".widget").slideUp();
		
			return false;
		}
	);
});