var createPlayer = function(id) {
    var settings = {
	clip: {
	    autoPlay: false,
	    provider: "rtmp",
	    url: "archive/" + id
	},
	plugins: {
	    controls: {
		fullscreen: false,
		autoHide: false,
		height: 24,
		mute: false,
		backgroundColor: "#292929",
		backgroundGradient: "none"
	    },
	    rtmp: {
		url: "http://assets.natkyrkan.se/player/flowplayer.rtmp-3.2.3.swf",
		netConnectionUrl: "rtmp://rtmp.natkyrkan.se/cfx/st",
		durationFunc: "getStreamLength"
	    }
	}
    };
    
    $f("player", "http://assets.natkyrkan.se/player/flowplayer-3.2.5.swf", settings);
};

$(function() {
    var id = $(".player").attr("data-id");

    if (id) {
	createPlayer(id);
    }
});
