$(window).load(function() {
	var videoWidth = 480;
	var videoHeight = 392;
	var playerSource = 'http://cdn2.netpr.pl/m/video/jwplayer/5/player.swf';
	var configSource = '/PressOffice/PressKit.'+companyID+'.po?xmlForVideo';
		
	$("a[rel*=facebox].videoFile .playButton").css("opacity","0.6");
	
	$("a[rel*=facebox].videoFile").click(function(){
		var innerCode, file = $(this).attr('href');
		
		var jqxhr = $.getJSON("http://biuroprasowe.netpr.pl/FileInfoGenerator.json?jsonp_callback=?", {
			"url": encodeURI(file)
		},function(data) {
			var obj = data[0];
			innerCode = '<object width="'+videoWidth+'" height="'+videoHeight+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,40,0"><param value="transparent" name="wmode"></param><param name="src" value="'+playerSource+'" ></param><param name="allowFullScreen" value="true" ></param><param name="flashvars" value="image='+obj.thumbnail+'&file='+obj.url+'&title='+obj.title+'&config='+configSource+'&width='+videoWidth+'&height='+videoHeight+'"></param><embed width="'+videoWidth+'" height="'+videoHeight+'" flashvars="image='+obj.thumbnail+'&width='+videoWidth+'&height='+videoHeight+'&config='+configSource+'&file='+obj.url+'&title='+obj.title+'" pluginspage="http://www.adobe.com/go/getflashplayer" wmode="transparent" src="'+playerSource+'" type="application/x-shockwave-flash" menu="false" allowscriptaccess="always" allowfullscreen="true" ></embed></object>';		
			$.facebox("<div class='playingVideo' style='background: transparent url(/m/img/load.gif) no-repeat 50% 50%'>"+innerCode+"</div>");
		});
	});
	
});

