// Get current song
function NowPlaying(){
    $.ajax({
        url: "http://www.mofosounds.com:8000/currentsong?sid=#", 
        type: "GET",
        success: function(result) {
            $("#playing").html(result);
        }
    });
}
// Update every 5 seconds
setInterval(function(){
    NowPlaying();
}, 5000);FATAL ERROR syntax error, unexpected '.', expecting variable (T_VARIABLE) or '{' or '$' on line number 4как это пофиксить . Мб есть какой то другой код получения ?