var siteurl = 'http://ehort.com';

function voteToday(id,userid){
    if(userid > 0){
        $('#star_' + id).html('<img src="' + siteurl + '/bin/icons/ajax-loader.gif" />');
        var data = $.get(siteurl + '/feeds/vote/' + id, function(data) {
            $('#star_' + id).html('<img src="' + siteurl + '/bin/icons/accept.png" />');
        });
    }
}


function edit_source(id){
    $('.load_' + id).html('<img src="' + siteurl + '/bin/icons/ajax-loader.gif" />');
    var data = $.get(siteurl + '/account/options/customfeeds_edit/' + id  + '/yes', function(data) {
        $('#edit-source').html(data);
        $('.load_' + id).html(null);
    });

}
