jQuery(document).ready(function()
{
	jQuery("div[name*=videoplayer]").each(
		function ()
		{
			var playerWidth = jQuery(this).parent().width();
			var playerString =
				'<object width="' + playerWidth + '" height="333">' +
				'	<param name="movie" value="http://mmc.jahrtsv.de/VideoPlayer.swf"></param>' +
				'	<param name="allowFullScreen" value="true"></param>' +
				'	<param name="allowscriptaccess" value="always"></param>' +
				'	<param name="wmode" value="transparent"></param>' +
				'	<param name="quality" value="high"></param>' +
				'	<param name="FlashVars" value="videoId=' + this.id + '">' +
				'	<embed src="http://mmc.jahrtsv.de/VideoPlayer.swf"' +
				'		type="application/x-shockwave-flash"' +
				'		allowscriptaccess="always"' +
				'		allowfullscreen="true"' +
				'		wmode="transparent"' +
				'		quality="high"' +
				'		width="' + playerWidth + '"' +
				'		height="333"' +
				'		flashvars="videoId=' + this.id + '">' +
				'	</embed>' +
				'</object>';
				
			jQuery(this).html(playerString);
		}
	);
	
	jQuery("div[name*=testplayer]").each(
		function ()
		{
			var playerWidth = jQuery(this).parent().width();
			var playerString =
				'<object width="' + playerWidth + '" height="333">' +
				'	<param name="movie" value="http://mmc.jahrtsv.de/VideoPlayerTest.swf"></param>' +
				'	<param name="allowFullScreen" value="true"></param>' +
				'	<param name="allowscriptaccess" value="always"></param>' +
				'	<param name="wmode" value="transparent"></param>' +
				'	<param name="quality" value="high"></param>' +
				'	<param name="FlashVars" value="videoId=' + this.id + '">' +
				'	<embed src="http://mmc.jahrtsv.de/VideoPlayerTest.swf"' +
				'		type="application/x-shockwave-flash"' +
				'		allowscriptaccess="always"' +
				'		allowfullscreen="true"' +
				'		wmode="transparent"' +
				'		quality="high"' +
				'		width="' + playerWidth + '"' +
				'		height="333"' +
				'		flashvars="videoId=' + this.id + '">' +
				'	</embed>' +
				'</object>';
				
			jQuery(this).html(playerString);
		}
	);
	
});

