/**
 *	author:	joe fearnley
 *	file:	flowplayer.config.js
 *
 *	A generic player config file for several combined in a play list.
 */
$(function() {
	var player = $f("player", "/steamstar/swfs/flowplayer-3.1.5.swf", {
		clip: {
			baseUrl: 'http://streaming.armintl.com/vod',
			provider: 'rtmp',
			autoPlay: false,
			scaling: 'fit'
		},
		plugins: {
			rtmp: {
				url: '/steamstar/swfs/flowplayer.rtmp-3.1.3.swf',
				netConnectionUrl: 'rtmp://streaming.armintl.com/vod'
			}
		}
	}).playlist("#playlist");

	$("#player").click(function () {
		player.play();
	});

});
