$(document).ready(function(){
	$('a.audio-player').each(function(){
		$(this).html('');
		var id = $(this).attr('id');
		var src = $(this).attr('href');
		var height = $(this).css('height');
		var width = $(this).css('width');

		if ($(this)[0].nodeName == 'A') {
			$(this).after('<div id="div_'+ id +'"></div>');
			$(this).remove();
			id = 'div_' + id;
		}

		$('#'+ id).html('<object id="jw_'+ id +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="jw_'+ id +'" width="'+ width +'" height="'+ height +'">'+
						'	<param name="movie" value="/bundles/amicusnord/js/players/player.swf" /> '+
						'	<param name="allowfullscreen" value="true" /> '+
						'	<param name="allowscriptaccess" value="always" /> '+
						'	<param name="flashvars" value="file='+ src +'" /> '+
						'	<embed '+
						'		type="application/x-shockwave-flash"'+
						'		id="jw_embed_'+ id +'"'+
						'		name="jw_embed_'+ id +'"'+
						'		src="/bundles/amicusnord/js/players/player.swf" '+
						'		width="'+ width +'" '+
						'		height="'+ height +'" '+
						'		allowscriptaccess="always" '+
						'		allowfullscreen="true"'+
						'		flashvars="file='+ src +'" '+
						'	/> '+
						'</object>');
	});

	$('a.video-player').each(function(){
		$(this).html('');
		var id = $(this).attr('id');
		var src = $(this).attr('href');
		var height = $(this).css('height');
		var width = $(this).css('width');
		var rel = $(this).attr('rel');

		if ($(this)[0].nodeName == 'A') {
			$(this).after('<div id="div_'+ id +'"></div>');
			$(this).remove();
			id = 'div_' + id;
		}

		var splash_image = '';
		if (rel != undefined && rel != '') {
			splash_image = '&image='+ rel;
		}

		$('#'+ id).html('<object id="jw_'+ id +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="jw_'+ id +'" width="'+ width +'" height="'+ height +'">'+
				'	<param name="movie" value="/bundles/amicusnord/js/players/player.swf" /> '+
				'	<param name="allowfullscreen" value="true" /> '+
				'	<param name="allowscriptaccess" value="always" /> '+
				'	<param name="flashvars" value="file='+ src + splash_image +'" /> '+
				'	<embed '+
				'		type="application/x-shockwave-flash"'+
				'		id="jw_embed_'+ id +'"'+
				'		name="jw_embed_'+ id +'"'+
				'		src="/bundles/amicusnord/js/players/player.swf" '+
				'		width="'+ width +'" '+
				'		height="'+ height +'" '+
				'		allowscriptaccess="always" '+
				'		allowfullscreen="true"'+
				'		flashvars="file='+ src + splash_image +'" '+
				'	/> '+
				'</object>');
	});
});
