// wait for the DOM to load using jQuery
$(function() {
	
	// setup player normally
	$f("player", "/flash/flowplayer-3.1.5.swf", {
	
		// clip properties common to all playlist entries
		clip: {
			baseUrl: 'http://sniper.handysoft.pl'
		},

		// show playlist buttons in controlbar
		plugins: {
			controls:null
		}
	}).playlist("div.clips", {
		playingClass: 'playing',
		pausedClass: 'paused',
		progressClass:'progress',
		loop:true
	});
	
});
