$(document).ready(function() 
{
	$('.score a').click(function()
	{		
		$(this).parent().parent().parent().addClass('scored');		
		//$.get("/js/rating/rating.php" + $(this).attr("href") +"&update=true", {}, function(data)
		$.get("/index.php/news/rate/" + $(this).attr("href") +"&update=true", {}, function(data)
		{
			//alert(data);
			//$('.scored').fadeOut("slow", function()
			//{
			//	$(this).html(data);
			//});
      $('.sp_rating').fadeOut("slow", function()
			{
				$(this).html(data);
			});
			$('.scored').fadeIn("slow");

		});		
		return false;
		
	});
	
}); // fin
