jQuery(document).ready(function($) {
    $.post('/pages/get_stars/', null, function(data){
        data = $.parseJSON(data)
        
        $.each(data, function(key, item){
            $('#star-' + key + ' div.title').show()
            $('#star-' + key + ' div.title span').html(item)
        });
    });
});
