jQuery(document).ready(function() {
	jQuery('.status').prepend("<div class='score_this'>(<a href='#'>score this item</a>)</div>");
	jQuery('.score_this').click(function(){
		jQuery(this).slideUp();
		return false;
	});
	
	jQuery('.score a').click(function() {
		jQuery(this).parent().parent().parent().addClass('scored');
		jQuery.get("rating/rating.php" + jQuery(this).attr("href") + "&update=true", {}, function(data){
			jQuery('.scored').fadeOut("normal",function() {
        jQuery(this).html(data);
				jQuery(this).fadeIn();
				jQuery(this).removeClass('scored');
			});
		});
		return false; 
	});
});
