// JavaScript Document

	$(document).ready(function () {

		$('a.media').each(function (i) {
			var audioPlayer = '<object type="application/x-shockwave-flash" data="../../../players/dewplayer.swf?mp3=' + $(this).attr('href') + '" width="200" height="20" id="dewplayer">';
			audioPlayer += '<param name="movie" value="../../../players/dewplayer.swf?mp3=' + $(this).attr('href') + '">';
			audioPlayer += '<param name="quality" value="high">';
			audioPlayer += '<param name="menu" value="false">';
			audioPlayer += '<param name="wmode" value="transparent">';
			audioPlayer += '</object>';
			$(this).after(audioPlayer).remove();
		});

	});
	
	$(document).ready(function () {

		$('a.media_video').each(function (i) {
			var audioPlayer = '<object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="' + $(this).attr('ancho') + '" height="' + $(this).attr('alto') + '"> ';
			audioPlayer += '<param name="movie" value="../../../players/player.swf" /> ';
			audioPlayer += '<param name="allowfullscreen" value="true" /> ';
			audioPlayer += '<param name="allowscriptaccess" value="always" /> ';
			audioPlayer += '<param name="flashvars" value="file=' + $(this).attr('href') + '" /> ';
			audioPlayer += '<embed type="application/x-shockwave-flash" id="player2" name="player2" src="../../../players/player.swf"  width="' + $(this).attr('ancho') + '"  height="' + $(this).attr('alto') + '" allowscriptaccess="always" allowfullscreen="true"flashvars="file=' + $(this).attr('href') + '" /> ';
			audioPlayer += '</object> ';
			$(this).after(audioPlayer).remove();
		});

	});

