function playYouTubeVideo( url ) {
	
	var arrayURL= url.split("=");
	if (arrayURL)
	{
		var id = arrayURL[1];
	}				

	var html  = '';
	html += '<object>';
	html += '<param name="movie" value="http://www.youtube.com/v/'+id+'"></param>';
	html += '<param name="height" value="280">';
	html += '<param name="height" value="550">';
	html += '<param name="autoplay" value="1">';
	html += '<param name="egm" value="0">';
	html += '<param name="wmode" value="transparent"></param>';
	html += '<embed height="280" width="550" src="http://www.youtube.com/v/'+id+'&autoplay=1&egm=0" type="application/x-shockwave-flash" wmode="transparent" ></embed>';
	html += '</object>';
	$("#videoHolder").html(html);
	$(".imageHolder").hide();
	$("#videoHolder").show();
	
}

function playFLVVideo( url ) {
	/*
	<embed
	src="/jw/embed/player.swf"
	width="550"
	height="280"
	bgcolor="undefined"
	allowscriptaccess="always"
	allowfullscreen="true"
	flashvars="file=http://ribajournal.abraxor.com/images/uploads/cache/clouds-17x17.png"
	/>
	*/
	var html  = '';
	html += '<embed height="280" width="550" allowfullscreen="true" src="/flash/player.swf" flashvars="file='+url+'&autostart=true" type="application/x-shockwave-flash" wmode="transparent" ></embed>';
	$("#videoHolder").html(html);
	$(".imageHolder").hide();
	$("#videoHolder").show();
	
}

$(function()
{
	$(".audio a.youtube").click(function() {
		playYouTubeVideo( $(this).attr("href") );
		return(false);
	});
	$(".audio a.flv").click(function() {
		playFLVVideo( $(this).attr("href") );
		return(false);
	});
}
);