$(document).ready(function(){
		$f("audio", "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
			// fullscreen button not needed here
			plugins: {
				controls: {
					fullscreen: false,
					height: 30,
					autoHide: false,
					stop: false,
				}
			},
			clip: {
			autoPlay: true,
			// optional: when playback starts close the first audio playback
				onBeforeBegin: function() {
					$f("audio").close();
				},
				onFinish: function() {
					$f("audio").play();
					return false;
				}
		}			
		});		
})
