$(function(){
    // reformat the song rating bits
    $('#subRating').hide();
    $('#rateForm').after('<span id="rate_result" class="ajaxy"></span>');
    $('input.fawmStar').rating({ 
        callback: function(value, link) { 
            $.post("/songs/ajax_rate/", 
                { song:$('#theRateSong').val(), rating:value }, 
                function(result) {
                    $("#rate_result").fadeTo(200,0.1, function() { 
                        $(this).html(result).css('color', '#888').fadeTo(500,1);	
                    });
                }
            );
        }
    });
});
