$(document).ready(function()
{
	$('.flowplayer_splash .splash_overlay').hover(
		function() { $(this).addClass('hover'); },
		function() { $(this).removeClass('hover'); }
	);

	$('.flowplayer').each(function()	{		$(this).flowplayer({ src: '/flash/flowplayer-3.1.5.swf', wmode: 'opaque' }, {			clip: {				autoPlay: false,
				autoBuffering: true,
				bufferLength: 10,				scaling: 'fit'			},			canvas: {				backgroundColor: '#000'			},			plugins: {				controls: {
					url: '/flash/flowplayer.controls-3.1.5.swf',					backgroundColor: '#000'				}			}		});	});
});

function show_fancybox_flowplayer()
{
	var url = $('.flowplayer_url', this).text();
	$(this).html('');
	$(this).flowplayer({ src: '/flash/flowplayer-3.1.5.swf', wmode: 'opaque' }, {
		clip: {
			autoPlay: true,
			bufferLength: 10,
			scaling: 'fit',
			url: url
		},
		canvas: {
			backgroundColor: '#000'
		},
		plugins: {
			controls: {
				url: '/flash/flowplayer.controls-3.1.5.swf',
				backgroundColor: '#000'
			}
		}
	});
};

