jQuery(document).ready(function() {
	jQuery('a.videothumb').lightbox();
	
	jQuery('a.videoArea').each(
							   
		function () {
				var file = jQuery(this).attr('href');
				var width = 750;
				var height = 450;
				try {
					var swf = new SWFObject("http://www.flamma.fi/js/player.swf","mediaplayer",width,height,"9");
					swf.addParam("allowfullscreen","true");
					swf.addVariable("width",width);
					swf.addVariable("height",height);
					swf.addVariable("file",file);
					jQuery(this).replaceWith( '<div>'+swf.getSWFHTML()+'</div>' );	
				} catch (error) {}
			}						   
	);
	
});
