$(document).ready(function() {
	$('.go_mediaplayer').each(function() {
		$f(
			this,
			{
				src    : '/typo3conf/ext/go_mediaplayer/res/swf/flowplayer-3.2.7.swf',
				width  : $(this).width(),
				height : $(this).height(),
				wmode  : 'transparent'
			},
			{
				logo: null,
				play: null,
				playlist: [
					{ 
						url: $('a', this).attr('href'),
						autoPlay: true,
						scaling: 'fit',
						onBegin: function(clip) {
							$('body.home #end').cycle('pause');
						},
						onFinish: function(clip) {
							this.getPlugin('play').hide();
							this.unload();
						}
					}
				]
			}
		).ipad();
	});
});


