$(document).ready(function($) {

	$(".imageFile a[rel*=facebox]").facebox();
	$("a[rel*=facebox].videoFile").click(function(){
		$a = $(this);
		
		videoWidth = 480;
		videoHeight = 392;

		playerSource = 'http://media.netpr.pl/m/video/swf/player.swf';
		configSource = '/PressOffice/PressKit.'+companyID+'.po?xmlForVideo';
		
		videoSource = $a.attr('href');
		videoTitle = $a.attr('title');
		
		var temp = new Array();
		temp = videoSource.split('/');
		fileLink = '/'+temp[2]+'/'+temp[3]+'/'+temp[4];
		
		var prime = new Array();
		prime = videoSource.split('f/');
			
		innerCode = '<object width="'+videoWidth+'" height="'+videoHeight+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" 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=http://media.netpr.pl/'+prime[0]+'tf'+fileLink+'&file=http://media.netpr.pl/'+temp[1]+fileLink+'&title='+videoTitle+'&config='+configSource+'&width='+videoWidth+'&height='+videoHeight+'"></param><embed width="'+videoWidth+'" height="'+videoHeight+'" flashvars="image=http://media.netpr.pl/'+prime[0]+'tf/'+fileLink+'&width='+videoWidth+'&height='+videoHeight+'&config='+configSource+'&file=http://media.netpr.pl/'+temp[1]+fileLink+'&title='+videoTitle+'" 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'>"+innerCode+"</div>");
		
	});

});

