$(function(){
	$('.videoplayer').each(function(i,e) {
		var el = $(e);
		var myurl = el.html().replace(/^\s+|\s+$/g, '');
                el.html('');
		flowplayer(el[0], "/tl_files/flowplayer/flowplayer-3.2.5.swf", {
			plugins: { controls:{
				url:"/tl_files/flowplayer/flowplayer.controls-3.2.3.swf",
				backgroundGradient:"none",
				backgroundColor:"rgba(250, 250, 250, 255)",
                                timeColor: "#444444",
                                buttonColor:"#444444",
				tooltipColor:"rgba(0, 0, 0, 0)",
				progressColor:"#1666B2",
				volumeColor:"#1666B2",
				durationColor:"#1666B2",
				scrubberBarHeightRatio:0.5,
				volumeBarHeightRatio:0.2,
				autoHide: {
					hideDuration:400,
					enabled:true,
					mouseOutDelay:500,
					fullscreenOnly:true,
					hideDelay:500,
					hideStyle:"fade"
				},
				tooltips:{
					marginBottom:5,
					buttons:false,
					scrubber:true,
					volume:true
				}
			}},
			clip:  {
				url: myurl,
				autoPlay: true
			}

		});


	});

  $(function(){
    $('a[rel^=lightbox]').fancybox();
  });
});

