function embedVideo(el,uuid) {
	var html5video = !!document.createElement('video').canPlayType;
	new Ajax.Request('/media/embed',{
		method:'get',
		parameters:{
			'html5video': (html5video)?1:0,
			'uuid': uuid
		},
		onSuccess:function(t) {
			$(el).update(t.responseText);
		}
	});
}
