$(function() {
	$(".player").each(function(i) {
			if ( $(this).attr("id").substr(0,5) == "video" ) {
				var embed_tag = escape( $(this).html() );
				embed_tag = embed_tag.replace( /\.xml/, ".flv" );
				embed_tag = embed_tag.replace( escape( "&amp;autostart=true" ), "" );
				var input_field = "<span class='embed'>Embed: <input id='embed_input' type='text' readonly='1' value='" + $.trim(unescape( embed_tag )) + "' /></span>";
				$(this).append(input_field);
				$('#embed_input').focus(function() {
					$(this).select();
				});
			}
	});
	$(".flashvideo").each(function(i) {
			if ( $(this).attr("id").substr(0,5) == "video" ) {
				var embed_tag = escape( $(this).html() );
				embed_tag = embed_tag.replace( escape( "&amp;autostart=true" ), "" );
				var input_field = "<span class='embed'>Embed: <input id='embed_input' type='text' readonly='1' value='" + $.trim(unescape( embed_tag )) + "' /></span>";
				$(this).append(input_field);
				$('#embed_input').focus(function() {
					$(this).select();
				});
			}
	});
});
