jQuery(document).ready(function($){

$("a[href*=.flv]").click(function(e){
		e.preventDefault();
		
		var href="fileadmin/"+$(this).attr("href").replace(/.*\//,"");
		
		//$(document).scrollTop(0);		
		$("body").darker();
		
		
		
		//$("body").append('<div id="darker" style="position:absolute; top:0px; left:0px; width:100%; background-color:#000;z-index:4000; display:none;"></div>');
		//$("#darker").css('opacity',0.6).fadeIn("slow");		
		//setFullHeight($("#darker"));
		
		
		
		$("body").append('<a href="#" id="popup-closer" style="position:absolute; top:50%; left:50%; margin-left:320px; margin-top:-285px; z-index:4050;"><img src="/typo3conf/ext/csflvlink/res/close.png" border="0" alt="Schlie&szlig;en" /></a>');
		$("body").append('<div id="popup-iframe" style="position:absolute; top:50%; left:50%; margin-left:-338px; margin-top:-269px; z-index:4030; background:none;"></div>');
		$("#popup-iframe").append('<a href="http://p126853.mittwaldserver.info/'+href+'" class="media"></a>');
		$('a.media').media( { width: 490, height:290 } );
		var width = 490;
		var height = 290;
		$("#popup-iframe").css("margin-left",(-width/2)+"px");
		$("#popup-iframe").css("margin-top",(-height/2)+"px");
		$("#popup-closer").css("margin-left",((width/2)-10)+"px");
		$("#popup-closer").css("margin-top",((-height/2)-25)+"px");
		$("#popup-closer").click(function(e){
			e.preventDefault();
			$("#popup-iframe").remove();
			$(this).remove();
			$("body").closeDarker();
		});
	});

	
});
