window.MEDIA_URL = window.STATIC_URL || '/static/';


$(function(){
    var PLAYLIST = [
        
        {
            mp3: "/media/upload/f9723c8f-7072-4c03-8353-495c11e0a9de.mp3",
            oga: "/media/upload/31d1b522-2509-459b-8926-8ccdff3fa514.ogg"
        }
        
    ], current = 0;
    
    PLAYLIST.sort(function(){ return parseInt(Math.random()*3)-1 });
    
    $("#jquery_jplayer_1").jPlayer({
        ready: function () {
            $(this).jPlayer("setMedia", PLAYLIST[current % PLAYLIST.length]);
        },
        ended: function(){
            $(this).jPlayer("setMedia", PLAYLIST[++current % PLAYLIST.length]);
            $(this).jPlayer("play");
        },
        swfPath: "/media/js/libs/",
        solution:"html,flash",
        supplied: "mp3,oga"
    });
    

    $(".radio .jp-next").click(function(){
        $("#jquery_jplayer_1").jPlayer("setMedia", PLAYLIST[++current % PLAYLIST.length]);
        $("#jquery_jplayer_1").jPlayer("play");
        return false;
    });
});


