if (!Function.prototype.bindAsEventListener) {
	Function.prototype.bindAsEventListener = function() {
		var __method = this, args = $A(arguments), object = args.shift();
		return function(event) {
			return __method.apply(object, [event || window.event].concat(args));
		}
	}
}
var $A = Array.from = function(iterable) {
	if (!iterable) return [];
	if (iterable.toArray) {
		return iterable.toArray();
	} else {
		var results = [];
		for (var i = 0; i < iterable.length; i++)
			results.push(iterable[i]);
		return results;
	}
}

if (!Math.customRound) {
	Math.customRound = function (number, digits) {
		if (arguments.length == 1) var digits = 2;
		var d = Math.pow(10, digits);
		return parseInt(number * d) / d;
	}
}
if (typeof(IDTVLBP) == "undefined") {
	IDTVLBP = function () {this.initialize.apply(this, arguments);};
	IDTVLBP.prototype = {
		frame: null,
		initialize: function (ds) {
			this.ds = ds;
			this.element = document.getElementById('IDTVP_' + this.ds.id);
			if (!this.element) { alert ('The iDesktop.tv video wall is not not embedded properly!'); return;}
				if (!this.element && document.getElementsByClassName)
				try {
					this.element = document.getElementsByClassName ('idtv_0c4d951488')[0];
				} catch(e) {}
			this.element.innerHTML = '<div class="idtv_' + this.ds.id + '"><div class="idtv_tb"></div><div class="idtv_inres"></div><div class="idtv_bb"></div></div>';
			this.elementout = this.element.getElementsByTagName('div')[0];
			this.elementin = this.element.getElementsByTagName('div')[2];
			this.results = new Array();
			if (this.ds.data.error) {
				this.elementin.innerHTML = '<div style="text-align:center">' + this.ds.data.error + '</div>';
			} else {
				if (this.ds.only_public) { // go trough ds.data.results and remove all private videos
					var newdata = new Array();
					for (var i = 0; i < this.ds.data.results.length; i ++)
						if (!this.ds.data.results[i].isprivate)
							newdata.push(this.ds.data.results[i]);
					this.ds.data.results = newdata;
				}
				var jsonArr = this.ds.data.results;
				this.page = 0; this.resc = jsonArr.length;
				this.maxpage = Math.ceil(this.resc/this.ds.pp) ;
				for (var i = 0, n = this.resc; i < n; i ++) {
					if (this.ds.only_public && jsonArr[i].isprivate) continue;
					var nr = document.createElement('div');
					nr.className = 'idtv_res';
					if (i % 2) nr.className += ' alt';
					jsonArr[i].title_esc = (jsonArr[i].title ? jsonArr[i].title.replace(/"/g, "&quot;") : '');// "
					var title = jsonArr[i].title_esc + (this.ds.thumb_show_length && jsonArr[i].length_seconds?' (' + jsonArr[i].length_seconds + ')':'');
					var t = '<img src="' + jsonArr[i].thumbnail_url + '" alt="' + jsonArr[i].title_esc + '" title="' + title + '" />';
					if (this.ds.thumb_show_title || this.ds.thumb_show_author || this.ds.thumb_show_length || this.ds.thumb_show_rating || this.ds.thumb_show_description) {
						var at = '';
						if (this.ds.thumb_show_title) {
							//at = '<a href="http://www.idesktop.tv/?watch=' + jsonArr[i].id + '" title="' + jsonArr[i].title + '" target="_blank">' + jsonArr[i].title + "</a>";
							at = '<span class="t">' + (jsonArr[i].title ? jsonArr[i].title : '') + "</span>";
						}
						if (this.ds.thumb_show_author) {
							at += '<span class="ah">' + (this.ds.thumb_show_labels?'<span class="lb">Author: </span>':'') + (jsonArr[i].author ? jsonArr[i].author : '') + '</span>';
						}
						if (this.ds.thumb_show_length || this.ds.thumb_show_views) {
							at += '<span class="lv">';
							if (this.ds.thumb_show_length) at += (this.ds.thumb_show_labels?'<span class="lb">Length: </span>':'') + (jsonArr[i].length_seconds ? jsonArr[i].length_seconds : '');
							if (this.ds.thumb_show_length && this.ds.thumb_show_views) at += ' | ';
							if (this.ds.thumb_show_views) at += (this.ds.thumb_show_labels?'<span class="lb">Views: </span>':'') + (jsonArr[i].view_count ? this.formatCommasInt(jsonArr[i].view_count) : '');
							at += '</span>';
						}
						if (this.ds.thumb_show_rating)
							at += '<span class="r">' + (this.ds.thumb_show_labels?'<span class="lb">Rating: </span>':'') + (jsonArr[i].rating_avg ? Math.customRound(jsonArr[i].rating_avg, 1) : '') + "</span>";
						if (this.ds.thumb_show_description) {
							at += '<span class="d">' + (jsonArr[i].description ? jsonArr[i].description : '') + "</span>";
						}
						t = t + '<div class="out" title="' + title + '"><div class="in">' + at + '</div></div>';
					}
					if (this.ds.mark_private && jsonArr[i].isprivate) {
						if (this.ds.thumbnail_text == 'N') {
							nr.innerHTML += t;
							nr.innerHTML += '<div class="private_mark">PRIVATE</div>';
						} else {
							nr.innerHTML += '<div class="private_mark">PRIVATE</div>';
							nr.innerHTML += t;
						}
					}
					else
						nr.innerHTML += t;
					this.elementin.appendChild(nr);
					this.results.push(nr);
					nr.onclick = this.onresclick.bindAsEventListener(this, i);
				}
			}
			var f = document.createElement('iframe');
			f.src = "http://www.idesktop.tv/embed/0c4d951488/utr.html?r=" + document.location;
			f.style.cssText = 'width:0;height:0;border:none;';
			f.frameborder = f.frameBorder = f.border = "0";
			this.element.appendChild(f);
		},
		onresclick: function (event,i) {
			var elem = event.target || event.srcElement;
			if (elem.tagName == 'A') return;
			if (this.ds.plpl == "newwin") {
				var loaded = false;
				if (this.frw) {
					try {
						this.frw.Player.playlist.selectItem(i);
						this.frw.Player.playlist.playSelected();
						loaded = true;
					} catch(e) {
						loaded = false;
					}
				}
				if (!loaded)
					this.frw = window.open ('http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+this.ds.data.results[i].id, 'idtvwin', 'width=' + this.ds.plw + ',height=' + this.ds.plh + 'toolbar=no,status=no,scrollbars=no,resize=no');
				return;
			}
			if (!this.frame) {
				this.plclbtn = document.createElement('img');
				this.plclbtn.src = this.ds.clbtnsrc;
				this.plclbtn.onclick = this.closeplr.bindAsEventListener(this);
				this.plclbtn.className = 'idtvp_clbtn';
				this.frameholder = document.createElement('div');
				this.frameholder.id = 'idtvpfh' + this.ds.id;
				this.frame = document.createElement('iframe');
				this.frame.id = 'idtvpf' + this.ds.id;
				this.frame.frameborder = this.frame.frameBorder = this.frame.border = "0";
				try {
					document.body.appendChild(this.frameholder);
					this.ba = true;
				} catch (e) {
					this.elementout.appendChild(this.frameholder);
					this.ba = false;
				}
				this.frameholder.appendChild(this.plclbtn);

			}
			/*this.frameholder.style.top = this.results[i].offsetTop + "px";
			this.frameholder.style.left = this.results[i].offsetLeft + this.results[i].offsetWidth + "px";*/
			var scrlX = (window.pageXOffset || document.body.scrollLeft || document.documentElement.scrollLeft);
		    var scrlY = (window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop);
		    var viewportW = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth ;
		    var viewportH = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
		    var element = this.elementout;
			var elFixedX = 0, elFixedY = 0;
		    do {
		    	elFixedY += element.offsetTop  || 0; elFixedX += element.offsetLeft || 0; element = element.offsetParent || element.parentNode;
		    } while (element);
		    var nx = 0, ny =0;
			switch (this.ds.plpl) {
				case "center":
					nx = scrlX + ((viewportW - this.ds.plw) / 2) - elFixedX;
					ny = scrlY + ((viewportH - this.ds.plh) / 2) - elFixedY;
					break;
				case "left":
					nx = this.results[i].offsetLeft - this.ds.plw;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "right":
					nx = this.results[i].offsetLeft + this.results[i].offsetWidth;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "top":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop - this.ds.plh;
					break;
				case "bottom":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop + this.results[i].offsetHeight;
					break;
				default: return;
			}
			if (this.ba) {
				nx += elFixedX; ny += elFixedY;
				if (nx < 0) nx = 0;
				if (ny < 0) ny = 0;
			} else {
				if (this.ds.plpl != "center") { // some checks if top/left it is out of the viewport
					var rx = nx + elFixedX, ry = ny + elFixedY;
					if (rx < 0) nx -= rx;
					if (ry < 0) ny -= ry;
				}
			}
			this.frameholder.style.left = nx + "px";
			this.frameholder.style.top = ny + "px";

			this.frameholder.style.display = 'block';
			var loaded = false;
			try {
				if (this.frame.contentWindow && this.frame.contentWindow.Player) { // detect if script access is allowed
					this.frame.contentWindow.Player.playlist.selectItem(i);
					this.frame.contentWindow.Player.playlist.playSelected();
					loaded = true;
				}
			} catch (e) {};
			if (!loaded) {
				if (this.frame.parentNode == this.frameholder) this.frameholder.removeChild(this.frame);
				this.frame.src = 'http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+(this.ds.data.results[i].id?this.ds.data.results[i].id:i);
				this.frameholder.appendChild(this.frame);
			}
		},
		closeplr: function (event) { this.frameholder.style.display='none'; this.frameholder.removeChild(this.frame); },
		nextP: function () { if (this.page < this.maxpage - 1) { this.page ++; this.showRes(); } },
		prevP: function () { if (this.page > 0) { this.page --; this.showRes(); } },
		formatCommasInt: function (val) {
			var s = new String(val);
			var rgx = /(\d+)(\d{3})/;
			while (rgx.test(s)) s = s.replace(rgx, '$1' + ',' + '$2');
			return s;
		}
	}
}

var IDTVLBDataSource0c4d951488 = {
	id: '0c4d951488', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 200, height: 186, pp: 3,
	rows: 3, cols: 1,
	plw: 600, plh: 500,
	createP: function () {
		if (this.reverse_playlist) this.data.results = this.data.results.reverse();
		this.p = new IDTVLBP(this);
	},
	plpl: 'center',
	only_public:true,mark_private:true,
	thumb_show_title : true, thumb_show_author : false,
	thumb_show_rating : false, thumb_show_views: false,
	thumb_show_length : false, thumb_show_description : false,
	thumb_show_labels : true,
	thumbnail_text: 'R',
	reverse_playlist: false,
	pldelta: 0,
Table './idesktop/yt_cache' is marked as crashed and should be repaired<br>Query: insert into yt_cache values ('http://gdata.youtube.com/feeds/api/users/skynews/uploads?alt=atom&max-results=50&start-index=1&orderby=published&safeSearch=moderate&format=5&v=2&client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&key=AI39si5QWl6WGY_2385XkoUaIPz1HOMVnixcqhiWVfd_YNvJAeHGWsXOBTb-a3jz5noA5jGUkd5ydVTwzEy8OLkG4jC_Lh7Mew', 218, '<?xml version=\'1.0\' encoding=\'UTF-8\'?><feed xmlns=\'http://www.w3.org/2005/Atom\' xmlns:app=\'http://www.w3.org/2007/app\' xmlns:media=\'http://search.yahoo.com/mrss/\' xmlns:openSearch=\'http://a9.com/-/spec/opensearch/1.1/\' xmlns:gd=\'http://schemas.google.com/g/2005\' xmlns:yt=\'http://gdata.youtube.com/schemas/2007\' gd:etag=\'W/&quot;DU4EQn0yeCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:user:skynews:uploads</id><updated>2012-02-09T06:11:43.390Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><title>Uploads by username: \"skynews\"
</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel=\'related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/profile?user=skynews#p/u\'/><link rel=\'hub\' href=\'http://pubsubhubbub.appspot.com\'/><link rel=\'http://schemas.google.com/g/2005#feed\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://schemas.google.com/g/2005#batch\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/batch?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads?alt=atom&amp;start-index=1&amp;max-results=50&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.210&amp;orderby=published&amp;safeSearch=moderate&amp;format=5&amp;v=2\'/><link rel=\'service\' type=\'application/atomsvc+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads?alt=atom-service&amp;v=2\'/><link rel=\'next\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads?alt=atom&amp;start-index=51&amp;max-results=50&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.210&amp;orderby=published&amp;safeSearch=moderate&amp;format=5&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/skynews</uri></author><generator version=\'2.1\' uri=\'http://gdata.youtube.com\'>YouTube data API</generator><openSearch:totalResults>1701</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>50</openSearch:itemsPerPage><entry gd:etag=\'W/&quot;C04NRX47eCp7I2A9WhRbFUQ.&quot;\'><id>tag:youtube.com,2008:video:FzM9kATpT9U</id><published>2012-02-06T16:50:49.000Z</published><updated>2012-02-07T05:19:54.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Europe\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Big\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Freeze:\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'More\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Than\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'300\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'People\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Die\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'In\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'The\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Worst\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Weather\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'For\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Decades\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Snow\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ice\'/><title>Europe\'s Big Freeze: More Than 300 People Die In The Worst Weather For Decades</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/FzM9kATpT9U?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=FzM9kATpT9U&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/FzM9kATpT9U/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/FzM9kATpT9U/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/FzM9kATpT9U/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/FzM9kATpT9U?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/FzM9kATpT9U?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'146\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>video.news.sky.com The number of people killed in the biggest freeze to hit Europe in decades has risen to over 300. The Ukraine has been hardest-hit, while Bosnia has declared a state of emergency after a combination of avalanches and strong winds left hundreds of villages cut off. Sky\'s Geraldine Cooper reports.</media:description><media:keywords>Europe, Big, Freeze:, More, Than, 300, People, Die, In, The, Worst, Weather, For, Decades, Sky, News, Snow, Ice</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=FzM9kATpT9U&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/FzM9kATpT9U/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:13\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/FzM9kATpT9U/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/FzM9kATpT9U/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:36.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/FzM9kATpT9U/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:13\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/FzM9kATpT9U/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:49.500\' yt:name=\'end\'/><media:title type=\'plain\'>Europe\'s Big Freeze: More Than 300 People Die In The Worst Weather For Decades</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'146\'/><yt:uploaded>2012-02-06T16:50:49.000Z</yt:uploaded><yt:videoid>FzM9kATpT9U</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'3\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1\' viewCount=\'345\'/><yt:rating numDislikes=\'0\' numLikes=\'3\'/></entry><entry gd:etag=\'W/&quot;DkcCRn47eCp7I2A9WhRbFEo.&quot;\'><id>tag:youtube.com,2008:video:W7-ImXzpikI</id><published>2012-02-05T17:08:44.000Z</published><updated>2012-02-05T20:34:27.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Transport\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chaos\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'As\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Snow\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Blankets\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Britain\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jane\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dougall\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Heathrow\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Airport\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ice\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Traffic\'/><title>Transport Chaos As Snow Blankets Britain</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/W7-ImXzpikI?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=W7-ImXzpikI&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/W7-ImXzpikI/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/W7-ImXzpikI/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/W7-ImXzpikI/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/W7-ImXzpikI/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/W7-ImXzpikI?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/W7-ImXzpikI?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'151\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>video.news.sky.com Heavy snowfall across Britain has caused transport chaos, with cars and lorries stuck on roads, airports closed and trains cancelled. Sky\'s Jane Dougall reports.</media:description><media:keywords>Transport, Chaos, As, Snow, Blankets, Britain, Sky, News, Jane, Dougall, Heathrow, Airport, Ice, Traffic</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=W7-ImXzpikI&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W7-ImXzpikI/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:15.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W7-ImXzpikI/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W7-ImXzpikI/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:37.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W7-ImXzpikI/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:15.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W7-ImXzpikI/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:53.250\' yt:name=\'end\'/><media:title type=\'plain\'>Transport Chaos As Snow Blankets Britain</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'151\'/><yt:uploaded>2012-02-05T17:08:44.000Z</yt:uploaded><yt:videoid>W7-ImXzpikI</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'3\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'372\'/><yt:rating numDislikes=\'0\' numLikes=\'3\'/></entry><entry gd:etag=\'W/&quot;AkEDR347eCp7I2A9WhRbFk4.&quot;\'><id>tag:youtube.com,2008:video:bSdj08XIKHQ</id><published>2012-02-04T17:01:52.000Z</published><updated>2012-02-07T18:17:56.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SYRIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MASSACRE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PRESIDENT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ASSAD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HOMS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Syria Massacre: Over 350 People Reported Dead</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/bSdj08XIKHQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=bSdj08XIKHQ&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bSdj08XIKHQ/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bSdj08XIKHQ/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bSdj08XIKHQ/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/bSdj08XIKHQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/bSdj08XIKHQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'175\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>A Syrian opposition group claims more than 350 people have been killed by government forces in the city of Homs. They claim President Assad\'s regime carried out a three hour massacre.</media:description><media:keywords>SYRIA, MASSACRE, PRESIDENT, ASSAD, HOMS, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=bSdj08XIKHQ&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bSdj08XIKHQ/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:27.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bSdj08XIKHQ/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bSdj08XIKHQ/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:43.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bSdj08XIKHQ/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:27.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bSdj08XIKHQ/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:11.250\' yt:name=\'end\'/><media:title type=\'plain\'>Syria Massacre: Over 350 People Reported Dead</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'175\'/><yt:uploaded>2012-02-04T17:01:52.000Z</yt:uploaded><yt:videoid>bSdj08XIKHQ</yt:videoid></media:group><gd:rating average=\'2.6296296\' max=\'5\' min=\'1\' numRaters=\'27\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'4\' viewCount=\'1954\'/><yt:rating numDislikes=\'16\' numLikes=\'11\'/></entry><entry gd:etag=\'W/&quot;DUYHQX47eCp7I2A9WhRbF04.&quot;\'><id>tag:youtube.com,2008:video:CnjAVde3XlA</id><published>2012-02-01T20:57:47.000Z</published><updated>2012-02-08T21:38:50.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'EGYPT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FOOTBALL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MATCH\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'VIOLENCE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AHLY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MASRY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PORT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SAID\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CAIRO\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Egypt Football Clashes: Over 70 People Killed</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/CnjAVde3XlA?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=CnjAVde3XlA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CnjAVde3XlA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CnjAVde3XlA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CnjAVde3XlA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/CnjAVde3XlA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/CnjAVde3XlA?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'188\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>More than 70 people are reported to have died, and a thousand injured after violence broke out at a football match in Egypt. Trouble flared after a game between Al Ahly, one of Egypt\'s most successful clubs, and Al Masry, a team based in the city of Port Said. Another match in Cairo was halted by the referee after receiving news of the violence in Port Said, prompting fans to set parts of the stadium on fire.</media:description><media:keywords>EGYPT, FOOTBALL, MATCH, VIOLENCE, AL, AHLY, MASRY, PORT, SAID, CAIRO, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=CnjAVde3XlA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CnjAVde3XlA/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:34\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CnjAVde3XlA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CnjAVde3XlA/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:47\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CnjAVde3XlA/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:34\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CnjAVde3XlA/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:21\' yt:name=\'end\'/><media:title type=\'plain\'>Egypt Football Clashes: Over 70 People Killed</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'188\'/><yt:uploaded>2012-02-01T20:57:47.000Z</yt:uploaded><yt:videoid>CnjAVde3XlA</yt:videoid></media:group><gd:rating average=\'2.7704918\' max=\'5\' min=\'1\' numRaters=\'61\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'6\' viewCount=\'55456\'/><yt:rating numDislikes=\'34\' numLikes=\'27\'/></entry><entry gd:etag=\'W/&quot;CkQMSX47eCp7I2A9WhRbFE0.&quot;\'><id>tag:youtube.com,2008:video:_c30CHFV3cI</id><published>2012-01-30T12:32:41.000Z</published><updated>2012-02-05T00:06:28.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Florida\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pile-up\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pile up\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'crash\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'accident\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Gainesville\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'marsh fire\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'smoke\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fog\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cars\'/><title>Florida Pile-Up Crash Kills At Least 10</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/_c30CHFV3cI?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=_c30CHFV3cI&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/_c30CHFV3cI/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/_c30CHFV3cI/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/_c30CHFV3cI/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/_c30CHFV3cI/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/_c30CHFV3cI?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/_c30CHFV3cI/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'23\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/_c30CHFV3cI?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'64\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>At least 10 people are killed and 20 injured as smoke and fog cause multiple crashes on a busy Florida road near Gainesville. The Florida Highway Patrol said the pile-up, involving 12 cars and six or seven trucks, occurred shortly before 4am on Interstate 75 after smoke from a marsh fire combined with fog to reduce visibility on both the northbound and southbound lanes. In one crash, two cars and a tractor trailer caught fire and melted asphalt on the road.</media:description><media:keywords>Florida, pile-up, pile up, crash, accident, Gainesville, marsh fire, smoke, fog, cars</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=_c30CHFV3cI&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_c30CHFV3cI/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:32\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_c30CHFV3cI/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_c30CHFV3cI/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:16\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_c30CHFV3cI/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:32\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_c30CHFV3cI/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:48\' yt:name=\'end\'/><media:title type=\'plain\'>Florida Pile-Up Crash Kills At Least 10</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'64\'/><yt:uploaded>2012-01-30T12:32:41.000Z</yt:uploaded><yt:videoid>_c30CHFV3cI</yt:videoid></media:group><gd:rating average=\'3.6666667\' max=\'5\' min=\'1\' numRaters=\'6\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'8495\'/><yt:rating numDislikes=\'2\' numLikes=\'4\'/></entry><entry gd:etag=\'W/&quot;A0MGR347eCp7I2A9WhRbEk0.&quot;\'><id>tag:youtube.com,2008:video:RYZE1Rc781c</id><published>2012-01-27T17:27:04.000Z</published><updated>2012-02-02T19:03:46.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'The Muppets\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kermit The Frog\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Miss Piggy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Oscars\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Academy Award\'/><title>Muppets: Kermit &amp; Miss Piggy Disappointed Over Oscar Snub</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/RYZE1Rc781c?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=RYZE1Rc781c&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RYZE1Rc781c/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RYZE1Rc781c/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RYZE1Rc781c/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RYZE1Rc781c/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/RYZE1Rc781c?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/RYZE1Rc781c/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/RYZE1Rc781c?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'21\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>The Muppets have been in London for the UK premiere of their first film in 12 years. In the US, The Muppets has already proved a box office hit and has an Oscar nomination for best song in a movie. But its two biggest stars, Kermit the Frog and Miss Piggy told Sky News they were disappointed not to get nominations of their own. \"Sadly it seems that the academy does not recognise pigs,\" said Miss Piggy. \"Yeah or frogs,\" chimed in Kermit. \"I\'m sure if they did we would have swept the awards for many years,\" Miss Piggy added.</media:description><media:keywords>The Muppets, Kermit The Frog, Miss Piggy, Oscars, Academy Award</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=RYZE1Rc781c&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RYZE1Rc781c/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:10.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RYZE1Rc781c/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RYZE1Rc781c/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:05.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RYZE1Rc781c/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:10.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RYZE1Rc781c/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:15.750\' yt:name=\'end\'/><media:title type=\'plain\'>Muppets: Kermit &amp; Miss Piggy Disappointed Over Oscar Snub</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'21\'/><yt:uploaded>2012-01-27T17:27:04.000Z</yt:uploaded><yt:videoid>RYZE1Rc781c</yt:videoid></media:group><gd:rating average=\'4.428571\' max=\'5\' min=\'1\' numRaters=\'14\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2\' viewCount=\'1930\'/><yt:rating numDislikes=\'2\' numLikes=\'12\'/></entry><entry gd:etag=\'W/&quot;DEAGQH47eCp7I2A9WhRbEkw.&quot;\'><id>tag:youtube.com,2008:video:nqWhRsPwe6Y</id><published>2012-01-26T12:05:43.000Z</published><updated>2012-02-02T21:05:21.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Julia Gillard\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Australia\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'prime minister\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Canberra\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Aboriginal\'/><title>Julia Gillard: Australia\'s Prime Minister Rescued By Bodyguards</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/nqWhRsPwe6Y?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=nqWhRsPwe6Y&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/nqWhRsPwe6Y/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/nqWhRsPwe6Y/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/nqWhRsPwe6Y/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/nqWhRsPwe6Y/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/nqWhRsPwe6Y?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/nqWhRsPwe6Y/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'50\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/nqWhRsPwe6Y?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'47\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Australian prime minister Julia Gillard was visibly shaken as she was bundled out of a restaurant by secret service agents after it was surrounded by around 200 protesters who banged on windows. At one point, Ms Gillard tripped over and lost a shoe as riot police helped to force a path through the crowd of rowdy Aboriginal rights demonstrators in the capital, Canberra. Her personal security guard was pictured wrapping his arms around her as he shielded the country\'s top politician from the activists and supported her to a waiting car.</media:description><media:keywords>Julia Gillard, Australia, prime minister, Canberra, Aboriginal</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=nqWhRsPwe6Y&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/nqWhRsPwe6Y/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:23.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/nqWhRsPwe6Y/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/nqWhRsPwe6Y/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:11.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/nqWhRsPwe6Y/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:23.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/nqWhRsPwe6Y/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:35.250\' yt:name=\'end\'/><media:title type=\'plain\'>Julia Gillard: Australia\'s Prime Minister Rescued By Bodyguards</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'47\'/><yt:uploaded>2012-01-26T12:05:43.000Z</yt:uploaded><yt:videoid>nqWhRsPwe6Y</yt:videoid></media:group><gd:rating average=\'4.3333335\' max=\'5\' min=\'1\' numRaters=\'6\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'4\' viewCount=\'17611\'/><yt:rating numDislikes=\'1\' numLikes=\'5\'/></entry><entry gd:etag=\'W/&quot;AkcMSH47eCp7I2A9WhRbEkw.&quot;\'><id>tag:youtube.com,2008:video:zs-1VDWGLhY</id><published>2012-01-23T21:12:15.000Z</published><updated>2012-02-02T21:28:09.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'TIM\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MARSHALL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SYRIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HOMS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ARAB\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'LEAGUE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PRESIDENT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ASSAD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Sky News Man Smuggled Into Syria</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/zs-1VDWGLhY?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=zs-1VDWGLhY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/zs-1VDWGLhY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/zs-1VDWGLhY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/zs-1VDWGLhY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/zs-1VDWGLhY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/zs-1VDWGLhY?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'221\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>WARNING: This report contains pictures of a dead body Sky\'s Foreign Affairs Editor Tim Marshall was smuggled into the city Homs in Syria after new demands from the Arab League for President Assad to hand over power to his deputy were rejected. Arab League observers have been touring the country - including a visit to Homs. It has witnessed some of the worst violence seen in the country over the past ten months.</media:description><media:keywords>TIM, MARSHALL, SYRIA, HOMS, ARAB, LEAGUE, PRESIDENT, ASSAD, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=zs-1VDWGLhY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/zs-1VDWGLhY/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:50.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/zs-1VDWGLhY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/zs-1VDWGLhY/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:55.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/zs-1VDWGLhY/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:50.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/zs-1VDWGLhY/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:45.750\' yt:name=\'end\'/><media:title type=\'plain\'>Sky News Man Smuggled Into Syria</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'221\'/><yt:uploaded>2012-01-23T21:12:15.000Z</yt:uploaded><yt:videoid>zs-1VDWGLhY</yt:videoid></media:group><gd:rating average=\'3.857143\' max=\'5\' min=\'1\' numRaters=\'14\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1\' viewCount=\'3778\'/><yt:rating numDislikes=\'4\' numLikes=\'10\'/></entry><entry gd:etag=\'W/&quot;C08NQX47eCp7I2A9WhRbFE0.&quot;\'><id>tag:youtube.com,2008:video:MbnztBLf_78</id><published>2012-01-21T15:05:22.000Z</published><updated>2012-02-05T00:31:30.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'David\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hockney\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Art\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Artist\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ipad\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Apple\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'App\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Pencil\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Exhibition\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Debate\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Questions\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lucy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cotter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Paint\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Painting\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Canvas\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Tablet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Computer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Gallery\'/><title>It\'s Pretty And It\'s Fun, But Is An iPad Drawing Really \'Art\'?</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/MbnztBLf_78?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=MbnztBLf_78&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MbnztBLf_78/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MbnztBLf_78/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MbnztBLf_78/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MbnztBLf_78/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/MbnztBLf_78?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/MbnztBLf_78/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'5\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/MbnztBLf_78?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'111\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>David Hockney has swapped pencil and sketch-pad for an iPad - leading some to question if his latest exhibition actually constitutes art. Sky\'s entertainment correspondent Lucy Cotter went to find out.</media:description><media:keywords>David, Hockney, Art, Artist, ipad, Apple, App, Pencil, Exhibition, Debate, Questions, Sky, News, Entertainment, Lucy, Cotter, Video, Paint, Painting, Canvas, Tablet, Computer, Gallery</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=MbnztBLf_78&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MbnztBLf_78/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:55.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MbnztBLf_78/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MbnztBLf_78/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:27.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MbnztBLf_78/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:55.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MbnztBLf_78/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:23.250\' yt:name=\'end\'/><media:title type=\'plain\'>It\'s Pretty And It\'s Fun, But Is An iPad Drawing Really \'Art\'?</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'111\'/><yt:uploaded>2012-01-21T15:05:22.000Z</yt:uploaded><yt:videoid>MbnztBLf_78</yt:videoid></media:group><gd:rating average=\'4.0\' max=\'5\' min=\'1\' numRaters=\'12\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2\' viewCount=\'1165\'/><yt:rating numDislikes=\'3\' numLikes=\'9\'/></entry><entry gd:etag=\'W/&quot;A04CSH47eCp7I2A9WhRbFkk.&quot;\'><id>tag:youtube.com,2008:video:xhHkJvDsIsA</id><published>2012-01-20T13:13:47.000Z</published><updated>2012-02-07T21:26:09.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Obama\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Barack Obama\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Al Green\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Let&apos;s Stay Together\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'president\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New York\'/><title>Obama Sings \"Let\'s Stay Together\" At New York Fundraising Event</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/xhHkJvDsIsA?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=xhHkJvDsIsA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/xhHkJvDsIsA/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/xhHkJvDsIsA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/xhHkJvDsIsA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/xhHkJvDsIsA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/xhHkJvDsIsA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/xhHkJvDsIsA/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'17\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/xhHkJvDsIsA?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'54\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>President Barack Obama wowed the crowd at a fundraising event in New York when he sang a line from the hit song \"Let\'s Stay Together.\" Al Green - who performed the original - was in the audience.</media:description><media:keywords>Obama, Barack Obama, Al Green, Let\'s Stay Together, president, New York</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=xhHkJvDsIsA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/xhHkJvDsIsA/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:27\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/xhHkJvDsIsA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/xhHkJvDsIsA/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:13.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/xhHkJvDsIsA/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:27\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/xhHkJvDsIsA/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:40.500\' yt:name=\'end\'/><media:title type=\'plain\'>Obama Sings \"Let\'s Stay Together\" At New York Fundraising Event</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'54\'/><yt:uploaded>2012-01-20T13:13:47.000Z</yt:uploaded><yt:videoid>xhHkJvDsIsA</yt:videoid></media:group><gd:rating average=\'3.9411764\' max=\'5\' min=\'1\' numRaters=\'34\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3\' viewCount=\'956\'/><yt:rating numDislikes=\'9\' numLikes=\'25\'/></entry><entry gd:etag=\'W/&quot;DU4BRH47eCp7I2A9WhRbFEw.&quot;\'><id>tag:youtube.com,2008:video:DfdrWhswWqU</id><published>2012-01-17T18:14:27.000Z</published><updated>2012-02-05T04:59:15.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'syria\'/><title>Syrian City Divided Over Assad Support</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/DfdrWhswWqU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=DfdrWhswWqU&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DfdrWhswWqU/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DfdrWhswWqU/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DfdrWhswWqU/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DfdrWhswWqU/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/DfdrWhswWqU?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/DfdrWhswWqU/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/DfdrWhswWqU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'182\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Homs is not a city under siege, but it is a city divided, and parts of it are besieged.</media:description><media:keywords>syria</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=DfdrWhswWqU&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DfdrWhswWqU/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:31\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DfdrWhswWqU/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DfdrWhswWqU/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:45.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DfdrWhswWqU/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:31\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DfdrWhswWqU/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:16.500\' yt:name=\'end\'/><media:title type=\'plain\'>Syrian City Divided Over Assad Support</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'182\'/><yt:uploaded>2012-01-17T18:14:27.000Z</yt:uploaded><yt:videoid>DfdrWhswWqU</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'3\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'622\'/><yt:rating numDislikes=\'0\' numLikes=\'3\'/></entry><entry gd:etag=\'W/&quot;AkQBQX47eCp7I2A9WhRUE00.&quot;\'><id>tag:youtube.com,2008:video:bgClcgo7K2k</id><published>2012-01-13T16:16:05.000Z</published><updated>2012-01-23T08:45:50.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Mexico\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Heart\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Transplant\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Operation\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Medics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Paramedics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dropped\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Human\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Organ\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Courier\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cooler\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Box\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bungling\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Patient\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dramatic\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Medical\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Emergency\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Watched\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Media\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Filmed\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'TV\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hospital\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><title>Heart-Stopping Moment In Mexico As Transplant Staff Drop Vital Organ</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/bgClcgo7K2k?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=bgClcgo7K2k&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bgClcgo7K2k/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bgClcgo7K2k/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bgClcgo7K2k/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bgClcgo7K2k/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/bgClcgo7K2k?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/bgClcgo7K2k/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'25\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/bgClcgo7K2k?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'92\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Bungling medics in Mexico are being heavily criticised, after they dropped a human heart being rushed to a transplant patient. Worst of all, the whole dramatic medical emergency was being watched all the way by the country\'s media.</media:description><media:keywords>Mexico, Heart, Transplant, Operation, Medics, Paramedics, Dropped, Human, Organ, Courier, Cooler, Box, Bungling, Patient, Dramatic, Medical, Emergency, Watched, Media, Filmed, Video, TV, Hospital, Sky, News</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=bgClcgo7K2k&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bgClcgo7K2k/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:46\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bgClcgo7K2k/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bgClcgo7K2k/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:23\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bgClcgo7K2k/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:46\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bgClcgo7K2k/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:09\' yt:name=\'end\'/><media:title type=\'plain\'>Heart-Stopping Moment In Mexico As Transplant Staff Drop Vital Organ</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'92\'/><yt:uploaded>2012-01-13T16:16:05.000Z</yt:uploaded><yt:videoid>bgClcgo7K2k</yt:videoid></media:group><gd:rating average=\'4.2727275\' max=\'5\' min=\'1\' numRaters=\'11\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3\' viewCount=\'10180\'/><yt:rating numDislikes=\'2\' numLikes=\'9\'/></entry><entry gd:etag=\'W/&quot;CUENSX47eCp7I2A9WhRVFkg.&quot;\'><id>tag:youtube.com,2008:video:okZOE5xFt5Y</id><published>2012-01-13T14:50:00.000Z</published><updated>2012-01-15T18:54:58.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'beijing\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'apple\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'iphone\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'china\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'eggs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sanlitun\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'iphone 4s\'/><title>Beijing: Apple Store Pelted With Eggs Over iPhone Delay</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/okZOE5xFt5Y?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=okZOE5xFt5Y&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/okZOE5xFt5Y/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/okZOE5xFt5Y/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/okZOE5xFt5Y/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/okZOE5xFt5Y/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/okZOE5xFt5Y?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/okZOE5xFt5Y/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'4\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/okZOE5xFt5Y?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'37\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Apple has suspended retail sales of its newest iPhone in China after its flagship store in Beijing was pelted with eggs. Scuffles broke out in the trendy Sanlitun district after shoppers who had queued overnight in sub-zero weather were told the iPhone 4S would not be released as scheduled. The restless crowd was addressed by a member of staff with a megaphone around 7am. He told them the launch was delayed and they should head home. Frustrated shoppers began shoving each other and security officials and police were seen dragging some people away.</media:description><media:keywords>beijing, apple, iphone, china, eggs, sanlitun, iphone 4s</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=okZOE5xFt5Y&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/okZOE5xFt5Y/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:18.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/okZOE5xFt5Y/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/okZOE5xFt5Y/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:09.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/okZOE5xFt5Y/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:18.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/okZOE5xFt5Y/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:27.750\' yt:name=\'end\'/><media:title type=\'plain\'>Beijing: Apple Store Pelted With Eggs Over iPhone Delay</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'37\'/><yt:uploaded>2012-01-13T14:50:00.000Z</yt:uploaded><yt:videoid>okZOE5xFt5Y</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'6\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'609\'/><yt:rating numDislikes=\'0\' numLikes=\'6\'/></entry><entry gd:etag=\'W/&quot;DU8GQn47eCp7I2A9WhRVGE0.&quot;\'><id>tag:youtube.com,2008:video:88aEKnqUMBY</id><published>2012-01-10T21:54:41.000Z</published><updated>2012-01-17T13:43:43.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'High\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Speed\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rail\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Trains\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'System\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Government\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Britain\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'UK\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Link\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HS2\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Project\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cost\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'32\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Billion\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Pounds\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'15\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Years\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Boost\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Economy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Travel\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'London\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Birmingham\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'45\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'minutesopposition\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Critics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Damage\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Countryside\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Alastair\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bunkall\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Video\'/><title>Government Gives High Speed Rail Link The Green Light</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/88aEKnqUMBY?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=88aEKnqUMBY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/88aEKnqUMBY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/88aEKnqUMBY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/88aEKnqUMBY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/88aEKnqUMBY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/88aEKnqUMBY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/88aEKnqUMBY/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'10\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/88aEKnqUMBY?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'208\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>It\'s being hailed as the ambitious new project which will finally make Britain\'s rail network fit for the 21st century -- and provide a much needed boost to the economy . But critics say the Government\'s plans for a new High Speed rail link are flawed, citing evironmental damage, a massive 32-billion-pound price tag, and the length of time -- 15 years -- it will take to build. Sky\'s Alistair Bunkall reports.</media:description><media:keywords>High, Speed, Rail, Trains, System, Government, Britain, UK, Link, HS2, Project, Cost, 32, Billion, Pounds, 15, Years, Boost, Economy, Travel, London, Birmingham, 45, minutesopposition, Critics, Damage, Countryside, Sky, News, Alastair, Bunkall, Video</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=88aEKnqUMBY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/88aEKnqUMBY/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:44\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/88aEKnqUMBY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/88aEKnqUMBY/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:52\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/88aEKnqUMBY/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:44\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/88aEKnqUMBY/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:36\' yt:name=\'end\'/><media:title type=\'plain\'>Government Gives High Speed Rail Link The Green Light</media:title><yt:duration seconds=\'208\'/><yt:uploaded>2012-01-10T21:54:41.000Z</yt:uploaded><yt:videoid>88aEKnqUMBY</yt:videoid></media:group><gd:rating average=\'4.0\' max=\'5\' min=\'1\' numRaters=\'4\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3\' viewCount=\'566\'/><yt:rating numDislikes=\'1\' numLikes=\'3\'/></entry><entry gd:etag=\'W/&quot;D04FQH47eCp7I2A9WhRUGEk.&quot;\'><id>tag:youtube.com,2008:video:PlVGjNmAVYU</id><published>2012-01-08T18:12:40.000Z</published><updated>2012-01-29T14:05:11.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'BUNGEE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ZIMBABWE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ERIN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'LAUNG\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'WORTH\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ZAMBESI\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RIVER\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Bungee Snaps Over Crock Infested River In Zimbabwe</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/PlVGjNmAVYU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=PlVGjNmAVYU&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PlVGjNmAVYU/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PlVGjNmAVYU/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PlVGjNmAVYU/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/PlVGjNmAVYU?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/PlVGjNmAVYU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'104\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>A 22-year-old Australian tourist is lucky to be alive after her bungee rope snapped during a jump. Erin Laung Worth was performing a jump more than 100 metres over the Zambesi River when the accident happened. She plunged into the freezing crocodile infested water and was then forced to swim through the rapids with her feet still tied together.</media:description><media:keywords>BUNGEE, ZIMBABWE, ERIN, LAUNG, WORTH, ZAMBESI, RIVER, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=PlVGjNmAVYU&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PlVGjNmAVYU/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:52\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PlVGjNmAVYU/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PlVGjNmAVYU/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:26\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PlVGjNmAVYU/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:52\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PlVGjNmAVYU/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:18\' yt:name=\'end\'/><media:title type=\'plain\'>Bungee Snaps Over Crock Infested River In Zimbabwe</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'104\'/><yt:uploaded>2012-01-08T18:12:40.000Z</yt:uploaded><yt:videoid>PlVGjNmAVYU</yt:videoid></media:group><gd:rating average=\'4.6571426\' max=\'5\' min=\'1\' numRaters=\'35\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'13\' viewCount=\'95581\'/><yt:rating numDislikes=\'3\' numLikes=\'32\'/></entry><entry gd:etag=\'W/&quot;CkUERH47eCp7I2A9WhRVE00.&quot;\'><id>tag:youtube.com,2008:video:MBb6MxcaK4o</id><published>2012-01-08T18:04:42.000Z</published><updated>2012-01-11T16:43:25.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HOUSE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FIRE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HOLLY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SMITH\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ELLA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'JORDAN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'REECE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FRECKLETON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MICHELLE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'KEITH\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Four Children Killed In Lancashire House Fire</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/MBb6MxcaK4o?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=MBb6MxcaK4o&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MBb6MxcaK4o/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MBb6MxcaK4o/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MBb6MxcaK4o/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/MBb6MxcaK4o?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/MBb6MxcaK4o?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'112\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>A teenager and three children have been killed in a fire at a house in Lancashire. Four-year-old twins Holly and Ella Smith, two-year-old Jordan Smith and 19-year-old Reece Smith died when the fire broke out at the property in Freckleton. Their mother Michelle Smith, who has five other children, was led out of the house by firefighters and wasn\'\'t thought to have been injured. The victims\' grandfather, Keith Smith, said the tragedy was hard to comprehend.</media:description><media:keywords>HOUSE, FIRE, HOLLY, SMITH, ELLA, JORDAN, REECE, FRECKLETON, MICHELLE, KEITH, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=MBb6MxcaK4o&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MBb6MxcaK4o/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:56\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MBb6MxcaK4o/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MBb6MxcaK4o/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:28\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MBb6MxcaK4o/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:56\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MBb6MxcaK4o/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:24\' yt:name=\'end\'/><media:title type=\'plain\'>Four Children Killed In Lancashire House Fire</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'112\'/><yt:uploaded>2012-01-08T18:04:42.000Z</yt:uploaded><yt:videoid>MBb6MxcaK4o</yt:videoid></media:group><gd:rating average=\'1.6666666\' max=\'5\' min=\'1\' numRaters=\'6\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'847\'/><yt:rating numDislikes=\'5\' numLikes=\'1\'/></entry><entry gd:etag=\'W/&quot;DEAGSH47eCp7I2A9WhRVEEk.&quot;\'><id>tag:youtube.com,2008:video:PM1XrtorZb8</id><published>2012-01-07T17:47:16.000Z</published><updated>2012-01-08T18:18:49.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RAIL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'LINK\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'LONDON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'BIRMINGHAM\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NETWORK\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2016\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2026\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>High-Speed Rail Link Plans Build Up Steam</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/PM1XrtorZb8?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=PM1XrtorZb8&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PM1XrtorZb8/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PM1XrtorZb8/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PM1XrtorZb8/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PM1XrtorZb8/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/PM1XrtorZb8?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/PM1XrtorZb8/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/PM1XrtorZb8?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'114\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Plans to build a controversial high speed rail link between London and Birmingham look set to get the go-ahead. A new report prepared for ministers by Network Rail - which is in favour of the new link -- says alternatives will fail to deal with long-term overcrowding on trains. The 100-mile rail link, due to be completed between 2016 and 2026, aims to cut the journey time between the two cities to 49 minutes.</media:description><media:keywords>RAIL, LINK, LONDON, BIRMINGHAM, NETWORK, 2016, 2026, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=PM1XrtorZb8&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PM1XrtorZb8/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:57\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PM1XrtorZb8/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PM1XrtorZb8/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:28.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PM1XrtorZb8/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:57\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PM1XrtorZb8/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:25.500\' yt:name=\'end\'/><media:title type=\'plain\'>High-Speed Rail Link Plans Build Up Steam</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'114\'/><yt:uploaded>2012-01-07T17:47:16.000Z</yt:uploaded><yt:videoid>PM1XrtorZb8</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'1\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'291\'/><yt:rating numDislikes=\'0\' numLikes=\'1\'/></entry><entry gd:etag=\'W/&quot;AkUCQX47eCp7I2A9WhRVEUU.&quot;\'><id>tag:youtube.com,2008:video:N5MsMCUwsfQ</id><published>2012-01-07T17:43:18.000Z</published><updated>2012-01-10T09:37:40.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'BALLOON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CRASH\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CARTERTON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'WELLINGTON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEW\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ZEALAND\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Eleven Die In Hot Air Balloon Crash In New Zealand</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/N5MsMCUwsfQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=N5MsMCUwsfQ&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/N5MsMCUwsfQ/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/N5MsMCUwsfQ/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/N5MsMCUwsfQ/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/N5MsMCUwsfQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/N5MsMCUwsfQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'134\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Five couples and their pilot have died after a hot air balloon crashed into power lines in New Zealand. Witnesses described how the balloon turned into a tower of \"sheer flame\" before plummeting to the ground near Carterton, around 50 miles northeast of the capital Wellington. Police say two people jumped from the basket while it was still in the air, but did not survive.</media:description><media:keywords>BALLOON, CRASH, CARTERTON, WELLINGTON, NEW, ZEALAND, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=N5MsMCUwsfQ&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/N5MsMCUwsfQ/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:07\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/N5MsMCUwsfQ/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/N5MsMCUwsfQ/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:33.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/N5MsMCUwsfQ/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:07\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/N5MsMCUwsfQ/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:40.500\' yt:name=\'end\'/><media:title type=\'plain\'>Eleven Die In Hot Air Balloon Crash In New Zealand</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'134\'/><yt:uploaded>2012-01-07T17:43:18.000Z</yt:uploaded><yt:videoid>N5MsMCUwsfQ</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'1\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'1592\'/><yt:rating numDislikes=\'0\' numLikes=\'1\'/></entry><entry gd:etag=\'W/&quot;DU4MQH47eCp7I2A9WhRUGUs.&quot;\'><id>tag:youtube.com,2008:video:r0mtfpnWte0</id><published>2012-01-06T16:14:59.000Z</published><updated>2012-01-30T23:59:41.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Boxer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Boxing\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Amir\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Khan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lamont\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Peterson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Interfered\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Supervisor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ringside\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Official\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'World\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Title\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Match\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Washington\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'DC\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Tweets\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Twitter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Association\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Michael\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Welsh\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Man\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Blue\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Shirt\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hat\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Light-welterweight\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Scorecards\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Score\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cards\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Defeat\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'On\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Points\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'WBA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Fight\'/><title>Amir Khan Speaks About Ringside \'Interference\' During Peterson Bout</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/r0mtfpnWte0?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=r0mtfpnWte0&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/r0mtfpnWte0/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/r0mtfpnWte0/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/r0mtfpnWte0/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/r0mtfpnWte0/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/r0mtfpnWte0?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/r0mtfpnWte0/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'27\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/r0mtfpnWte0?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'334\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>The boxer Amir Khan has alleged an unidentified man \'interfered\' with ringside officials during a World Title match last month. In a series of tweets, he claims the fight supervisor for the World Boxing Association Michael Welsh can be seen apparently being disturbed by a man in a blue shirt and hat sitting to his left. Amir lost the fight and two light-welterweight titles to Lamont Peterson in Washington DC.</media:description><media:keywords>Boxer, Boxing, Amir, Khan, Lamont, Peterson, Interfered, Supervisor, Ringside, Official, World, Title, Match, Washington, DC, Tweets, Twitter, Association, Michael, Welsh, Man, Blue, Shirt, Hat, Light-welterweight, Scorecards, Score, Cards, Defeat, On, Points, WBA, Fight</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=r0mtfpnWte0&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/r0mtfpnWte0/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:47\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/r0mtfpnWte0/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/r0mtfpnWte0/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:23.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/r0mtfpnWte0/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:47\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/r0mtfpnWte0/3.jpg\' height=\'90\' width=\'120\' time=\'00:04:10.500\' yt:name=\'end\'/><media:title type=\'plain\'>Amir Khan Speaks About Ringside \'Interference\' During Peterson Bout</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'334\'/><yt:uploaded>2012-01-06T16:14:59.000Z</yt:uploaded><yt:videoid>r0mtfpnWte0</yt:videoid></media:group><gd:rating average=\'2.6\' max=\'5\' min=\'1\' numRaters=\'10\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'1179\'/><yt:rating numDislikes=\'6\' numLikes=\'4\'/></entry><entry gd:etag=\'W/&quot;DU4BQX47eCp7I2A9WhRUFE4.&quot;\'><id>tag:youtube.com,2008:video:Fcr1GeGaFsc</id><published>2012-01-05T11:17:03.000Z</published><updated>2012-01-24T20:45:50.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Diane Abbott\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'twitter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tweet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Labour\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MP\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Stephen Lawrence\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'race\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'race row\'/><title>Diane Abbott Defends \"White People\" Tweet Which Sparked Race Row</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/Fcr1GeGaFsc?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=Fcr1GeGaFsc&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Fcr1GeGaFsc/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Fcr1GeGaFsc/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Fcr1GeGaFsc/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Fcr1GeGaFsc/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/Fcr1GeGaFsc?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/Fcr1GeGaFsc?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'45\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Shadow health minister Diane Abbott is facing calls to resign over controversial comments posted on the social networking website Twitter. The Labour MP wrote: \"White people love playing \'divide and rule\'. We should not play their game.\" The remark came during an online conversation with a freelance journalist in the wake of the sentencing of two men for the racially-aggravated murder of Stephen Lawrence.</media:description><media:keywords>Diane Abbott, twitter, tweet, Labour, MP, Stephen Lawrence, race, race row</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=Fcr1GeGaFsc&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Fcr1GeGaFsc/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:22.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Fcr1GeGaFsc/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Fcr1GeGaFsc/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:11.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Fcr1GeGaFsc/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:22.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Fcr1GeGaFsc/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:33.750\' yt:name=\'end\'/><media:title type=\'plain\'>Diane Abbott Defends \"White People\" Tweet Which Sparked Race Row</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'45\'/><yt:uploaded>2012-01-05T11:17:03.000Z</yt:uploaded><yt:videoid>Fcr1GeGaFsc</yt:videoid></media:group><gd:rating average=\'1.962963\' max=\'5\' min=\'1\' numRaters=\'54\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3\' viewCount=\'6346\'/><yt:rating numDislikes=\'41\' numLikes=\'13\'/></entry><entry gd:etag=\'W/&quot;DEQHSX47eCp7I2A9WhRWF00.&quot;\'><id>tag:youtube.com,2008:video:AKgULNOd0Ug</id><published>2012-01-04T19:45:38.000Z</published><updated>2012-01-04T19:45:38.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'new\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stephen\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lawrence\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'murder\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'david\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bowden\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'analysis\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Detective\'/><title>Lawrence Case \"Not Closed\"</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/AKgULNOd0Ug?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=AKgULNOd0Ug&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/AKgULNOd0Ug/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/AKgULNOd0Ug/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/AKgULNOd0Ug/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/AKgULNOd0Ug/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/AKgULNOd0Ug?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/AKgULNOd0Ug/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'0\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/AKgULNOd0Ug?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'162\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>video.news.sky.com The judge, the Lawrence family and the Met Police Chief all repeated their assertion that the case isn\'t closed -- because others who were involved are still at large. Our senior correspondent David Bowden has been looking at where the investigation goes from here.</media:description><media:keywords>Sky, new, stephen, lawrence, murder, david, bowden, analysis, Detective</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=AKgULNOd0Ug&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AKgULNOd0Ug/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:21\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AKgULNOd0Ug/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AKgULNOd0Ug/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:40.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AKgULNOd0Ug/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:21\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AKgULNOd0Ug/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:01.500\' yt:name=\'end\'/><media:title type=\'plain\'>Lawrence Case \"Not Closed\"</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'162\'/><yt:uploaded>2012-01-04T19:45:38.000Z</yt:uploaded><yt:videoid>AKgULNOd0Ug</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'1\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'244\'/><yt:rating numDislikes=\'0\' numLikes=\'1\'/></entry><entry gd:etag=\'W/&quot;DEQEQH47eCp7I2A9WhRWGEg.&quot;\'><id>tag:youtube.com,2008:video:uSbXX9nYbHQ</id><published>2012-01-04T19:36:12.000Z</published><updated>2012-01-06T13:25:01.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'news\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tom\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'parmenter\'/><title>Stephen Lawrence\'s Mother Hopes Her Family Can \"Move On\"</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/uSbXX9nYbHQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=uSbXX9nYbHQ&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uSbXX9nYbHQ/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uSbXX9nYbHQ/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uSbXX9nYbHQ/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uSbXX9nYbHQ/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/uSbXX9nYbHQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/uSbXX9nYbHQ/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'3\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/uSbXX9nYbHQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'220\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>video.news.sky.com Stephen Lawrence\'s mother says she hopes the family can finally begin to \"move on\" after two of the teenager\'s killers were sentenced to life in prison. Gary Dobson and David Norris will serve at least 15 and 14 years respectively for the racist murder -- described in court today as a \"terrible and evil crime\". The judge went on to say he hoped the case would be not closed -- a sentiment echoed by the new head of the Metropolitan police, who warned that the remaining members of the gang responsible for the attack \"should not rest easily in their beds.\" We\'ll have more on that in a moment, first our main report from Sky\'s Tom Parmenter.</media:description><media:keywords>sky, news, tom, parmenter</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=uSbXX9nYbHQ&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uSbXX9nYbHQ/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:50\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uSbXX9nYbHQ/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uSbXX9nYbHQ/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:55\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uSbXX9nYbHQ/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:50\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uSbXX9nYbHQ/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:45\' yt:name=\'end\'/><media:title type=\'plain\'>Stephen Lawrence\'s Mother Hopes Her Family Can \"Move On\"</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'220\'/><yt:uploaded>2012-01-04T19:36:12.000Z</yt:uploaded><yt:videoid>uSbXX9nYbHQ</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'3\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'131\'/><yt:rating numDislikes=\'0\' numLikes=\'3\'/></entry><entry gd:etag=\'W/&quot;DkAER347eCp7I2A9WhRVFEo.&quot;\'><id>tag:youtube.com,2008:video:MrUael5wQJU</id><published>2012-01-03T16:47:09.000Z</published><updated>2012-01-13T17:11:46.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Stephen Lawrence\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Doreen Lawrence\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Gary Dobson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'David Norris\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Neville Lawrence\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'racist\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'murder\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Eltham\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Old Bailey\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Police\'/><title>Stephen Lawrence\'s Mother Doreen Attacks Original Police Investigation Into Son\'s Murder</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/MrUael5wQJU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=MrUael5wQJU&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MrUael5wQJU/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MrUael5wQJU/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MrUael5wQJU/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MrUael5wQJU/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/MrUael5wQJU?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/MrUael5wQJU/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'32\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/MrUael5wQJU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'346\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Gary Dobson and David Norris have been found guilty of the murder of teenager Stephen Lawrence in 1993. Mr Lawrence, 18, was killed in a racist attack by a gang of youths in Eltham, southeast London, 19 years ago. The trial into the black A-level student\'s murder began at the Old Bailey on November 14 last year. There had been total silence in court as the foreman of the jury said \"guilty\" when asked if the four women and eight men had reached verdicts on the murder charge. Mr Lawrence\'s parents Doreen and Neville wept as the verdicts were delivered. Doreen Lawrence has fought hard for justice for her family Doreen, speaking outside court, attacked the original police investigation and said she did not regard the verdicts as cause for celebration.</media:description><media:keywords>Stephen Lawrence, Doreen Lawrence, Gary Dobson, David Norris, Neville Lawrence, racist, murder, Eltham, Old Bailey, Police</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=MrUael5wQJU&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MrUael5wQJU/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:53\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MrUael5wQJU/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MrUael5wQJU/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:26.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MrUael5wQJU/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:53\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MrUael5wQJU/3.jpg\' height=\'90\' width=\'120\' time=\'00:04:19.500\' yt:name=\'end\'/><media:title type=\'plain\'>Stephen Lawrence\'s Mother Doreen Attacks Original Police Investigation Into Son\'s Murder</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'346\'/><yt:uploaded>2012-01-03T16:47:09.000Z</yt:uploaded><yt:videoid>MrUael5wQJU</yt:videoid></media:group><gd:rating average=\'4.2\' max=\'5\' min=\'1\' numRaters=\'10\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'1206\'/><yt:rating numDislikes=\'2\' numLikes=\'8\'/></entry><entry gd:etag=\'W/&quot;DkcDRH47eCp7I2A9WhRWFkw.&quot;\'><id>tag:youtube.com,2008:video:s0GewAw9opM</id><published>2012-01-01T21:02:13.000Z</published><updated>2012-01-03T18:07:55.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Years\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'eve\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'parties\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fireworks\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Party\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'River\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Thames\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'London\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hogmanay\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'City Of London\'/><title>London Sees In 2012 With Spectacular Firework Display</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/s0GewAw9opM?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=s0GewAw9opM&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/s0GewAw9opM/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/s0GewAw9opM/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/s0GewAw9opM/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/s0GewAw9opM/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/s0GewAw9opM?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/s0GewAw9opM/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'10\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/s0GewAw9opM?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'230\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Millions of people have seen in 2012 at parties across the country -- the biggest of all in London. 250 thousand revellers lined the banks of the River Thames for a firework display designed to impress the world ahead of the Olympics. Rhiannon Mills reports from the capital.</media:description><media:keywords>New, Years, eve, 2012, parties, fireworks, Party, River, Thames, London, Hogmanay, City Of London</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=s0GewAw9opM&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/s0GewAw9opM/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:55\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/s0GewAw9opM/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/s0GewAw9opM/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:57.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/s0GewAw9opM/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:55\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/s0GewAw9opM/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:52.500\' yt:name=\'end\'/><media:title type=\'plain\'>London Sees In 2012 With Spectacular Firework Display</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'230\'/><yt:uploaded>2012-01-01T21:02:13.000Z</yt:uploaded><yt:videoid>s0GewAw9opM</yt:videoid></media:group><gd:rating average=\'4.0\' max=\'5\' min=\'1\' numRaters=\'12\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'6\' viewCount=\'665\'/><yt:rating numDislikes=\'3\' numLikes=\'9\'/></entry><entry gd:etag=\'W/&quot;AkINSH47eCp7I2A9WhRWFkU.&quot;\'><id>tag:youtube.com,2008:video:ZM5aaEUQjaQ</id><published>2012-01-01T19:59:55.000Z</published><updated>2012-01-04T14:49:59.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Prince\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Philip\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Royals\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New Year&apos;s Day\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Queen\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sandringham\'/><title>Prince Philip Attends New Year\'s Day Service</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/ZM5aaEUQjaQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=ZM5aaEUQjaQ&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/ZM5aaEUQjaQ/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/ZM5aaEUQjaQ/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/ZM5aaEUQjaQ/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/ZM5aaEUQjaQ/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/ZM5aaEUQjaQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/ZM5aaEUQjaQ/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'5\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/ZM5aaEUQjaQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'120\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>The Duke of Edinburgh has appeared with the Royal family for the first time since he was released from hospital. Prince Philip attended a New Year\'s Day church service on the Sandringham Estate. The 90-year-old walked to the Sunday service at St Mary Magdeleine\'s Church despite suffering from a blocked coronary artery before Christmas.</media:description><media:keywords>Prince, Philip, Royals, New Year\'s Day, Queen, Sandringham</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=ZM5aaEUQjaQ&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ZM5aaEUQjaQ/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:00\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ZM5aaEUQjaQ/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ZM5aaEUQjaQ/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:30\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ZM5aaEUQjaQ/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:00\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ZM5aaEUQjaQ/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:30\' yt:name=\'end\'/><media:title type=\'plain\'>Prince Philip Attends New Year\'s Day Service</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'120\'/><yt:uploaded>2012-01-01T19:59:55.000Z</yt:uploaded><yt:videoid>ZM5aaEUQjaQ</yt:videoid></media:group><gd:rating average=\'4.2\' max=\'5\' min=\'1\' numRaters=\'5\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2\' viewCount=\'248\'/><yt:rating numDislikes=\'1\' numLikes=\'4\'/></entry><entry gd:etag=\'W/&quot;C0QBQn47eCp7I2A9WhRVEEs.&quot;\'><id>tag:youtube.com,2008:video:kzj7DoEbOqY</id><published>2011-12-30T17:44:50.000Z</published><updated>2012-01-08T22:22:33.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MARGARET\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'THATCHER\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FALKLANDS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'WAR\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NATIONAL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ARCHIVES\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'LIVERPOOL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'TOXTETH\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RIOTS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MICHAEL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HESELTINE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GEOFFREY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HOWE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Secret Margaret Thatcher Files Revealed</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/kzj7DoEbOqY?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=kzj7DoEbOqY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/kzj7DoEbOqY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/kzj7DoEbOqY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/kzj7DoEbOqY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/kzj7DoEbOqY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/kzj7DoEbOqY?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'133\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Secret files have been unveiled which reveal how Margaret Thatcher argued with defence chiefs over spending cuts just a year before the Falklands war. The 30-year-old Cabinet papers from the National Archives also reveal how the Prime Minister was advised to abandon Liverpool to \"managed decline\" after the 1981 Toxteth Riots. The then-Secretary of State for the Environment Michael Heseltine had sought regeneration funding for the city but Chancellor Geoffrey Howe argued it was a waste of money.</media:description><media:keywords>MARGARET, THATCHER, FALKLANDS, WAR, NATIONAL, ARCHIVES, LIVERPOOL, TOXTETH, RIOTS, MICHAEL, HESELTINE, GEOFFREY, HOWE, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=kzj7DoEbOqY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kzj7DoEbOqY/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:06.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kzj7DoEbOqY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kzj7DoEbOqY/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:33.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kzj7DoEbOqY/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:06.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kzj7DoEbOqY/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:39.750\' yt:name=\'end\'/><media:title type=\'plain\'>Secret Margaret Thatcher Files Revealed</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'133\'/><yt:uploaded>2011-12-30T17:44:50.000Z</yt:uploaded><yt:videoid>kzj7DoEbOqY</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'3\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1\' viewCount=\'829\'/><yt:rating numDislikes=\'0\' numLikes=\'3\'/></entry><entry gd:etag=\'W/&quot;DEECRX47eCp7I2A9WhRVEEo.&quot;\'><id>tag:youtube.com,2008:video:bznAi6inr5U</id><published>2011-12-30T17:40:24.000Z</published><updated>2012-01-09T02:37:44.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SAMOA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'TIMEZONE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PACIFIC\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ISLAND\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Samoa Skips A Day</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/bznAi6inr5U?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=bznAi6inr5U&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bznAi6inr5U/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bznAi6inr5U/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/bznAi6inr5U/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/bznAi6inr5U?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/bznAi6inr5U?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'111\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Time has officially flown for Samoa, as it\'s now in a different timezone. They went from Thursday night, straight to Saturday morning, skipping Friday altogether. It\'s a historic switch which the Pacific Island state\'s prime minister says will take the country forward to a more prosperous future.</media:description><media:keywords>SAMOA, TIMEZONE, PACIFIC, ISLAND, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=bznAi6inr5U&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bznAi6inr5U/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:55.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bznAi6inr5U/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bznAi6inr5U/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:27.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bznAi6inr5U/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:55.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/bznAi6inr5U/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:23.250\' yt:name=\'end\'/><media:title type=\'plain\'>Samoa Skips A Day</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'111\'/><yt:uploaded>2011-12-30T17:40:24.000Z</yt:uploaded><yt:videoid>bznAi6inr5U</yt:videoid></media:group><gd:rating average=\'4.5555553\' max=\'5\' min=\'1\' numRaters=\'9\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3\' viewCount=\'318\'/><yt:rating numDislikes=\'1\' numLikes=\'8\'/></entry><entry gd:etag=\'W/&quot;AkcGQn47eCp7I2A9WhRVFUg.&quot;\'><id>tag:youtube.com,2008:video:apje2snLrzc</id><published>2011-12-29T17:41:34.000Z</published><updated>2012-01-14T16:20:23.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'KIM\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'JONG-IL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'JONG-UN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NORTH\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'KOREA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Three Minutes Silence Observed For Former North Korea Leader Kim Jong-Il</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/apje2snLrzc?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=apje2snLrzc&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/apje2snLrzc/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/apje2snLrzc/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/apje2snLrzc/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/apje2snLrzc?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/apje2snLrzc?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'173\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Hundreds of thousands of people have observed a three minutes silence to commemorate their former leader Kim Jong-Il. The country\'s second day of mourning was more restrained than the scenes of frenzied grief at Wednesday\'s funeral. During the ceremony his youngest son Kim Jong-Un was declared the supreme leader of the party and the military.</media:description><media:keywords>KIM, JONG-IL, JONG-UN, NORTH, KOREA, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=apje2snLrzc&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/apje2snLrzc/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:26.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/apje2snLrzc/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/apje2snLrzc/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:43.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/apje2snLrzc/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:26.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/apje2snLrzc/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:09.750\' yt:name=\'end\'/><media:title type=\'plain\'>Three Minutes Silence Observed For Former North Korea Leader Kim Jong-Il</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'173\'/><yt:uploaded>2011-12-29T17:41:34.000Z</yt:uploaded><yt:videoid>apje2snLrzc</yt:videoid></media:group><gd:rating average=\'1.5714285\' max=\'5\' min=\'1\' numRaters=\'21\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1\' viewCount=\'689\'/><yt:rating numDislikes=\'18\' numLikes=\'3\'/></entry><entry gd:etag=\'W/&quot;CEAMSX47eCp7I2A9WhRUF0g.&quot;\'><id>tag:youtube.com,2008:video:2zgvRCqiBlg</id><published>2011-12-29T17:35:10.000Z</published><updated>2012-01-28T12:13:08.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'THE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MAGIC\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'BUS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'INDIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CHILDREN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SPORT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>The Magic Bus Charity Helps Children In India</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/2zgvRCqiBlg?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=2zgvRCqiBlg&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/2zgvRCqiBlg/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/2zgvRCqiBlg/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/2zgvRCqiBlg/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/2zgvRCqiBlg?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/2zgvRCqiBlg?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'157\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Children living in the slums of India are being educated through sport by a British charity which is helping to improve their chances in life. The charity, called \'The Magic Bus\', says sport can help increase independence and confidence and improve the leadership skills for young people. Sky\'s India correspondent Alex Rossi reports.</media:description><media:keywords>THE, MAGIC, BUS, INDIA, CHILDREN, SPORT, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=2zgvRCqiBlg&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/2zgvRCqiBlg/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:18.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/2zgvRCqiBlg/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/2zgvRCqiBlg/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:39.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/2zgvRCqiBlg/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:18.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/2zgvRCqiBlg/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:57.750\' yt:name=\'end\'/><media:title type=\'plain\'>The Magic Bus Charity Helps Children In India</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'157\'/><yt:uploaded>2011-12-29T17:35:10.000Z</yt:uploaded><yt:videoid>2zgvRCqiBlg</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'2\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'299\'/><yt:rating numDislikes=\'0\' numLikes=\'2\'/></entry><entry gd:etag=\'W/&quot;A0IMRH47eCp7I2A9WhRWEUQ.&quot;\'><id>tag:youtube.com,2008:video:kg_sZwIM6v0</id><published>2011-12-25T14:42:23.000Z</published><updated>2011-12-29T22:59:45.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'news\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'afghanistan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'troops\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'messages\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'home\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Home (Michael Bublé Song)\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Army\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Christmas\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Military\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Navy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Force\'/><title>Army Christmas: Troops\' Messages Home</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/kg_sZwIM6v0?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=kg_sZwIM6v0&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/kg_sZwIM6v0/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/kg_sZwIM6v0/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/kg_sZwIM6v0/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/kg_sZwIM6v0?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/kg_sZwIM6v0?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'420\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>British personnel serving in Afghanistan have been celebrating Christmas -- albeit away from their loved ones.</media:description><media:keywords>Sky, news, afghanistan, troops, messages, home, Home (Michael Bublé Song), Army, Christmas, Military, Navy, Force</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=kg_sZwIM6v0&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kg_sZwIM6v0/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:30\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kg_sZwIM6v0/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kg_sZwIM6v0/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:45\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kg_sZwIM6v0/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:30\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/kg_sZwIM6v0/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:15\' yt:name=\'end\'/><media:title type=\'plain\'>Army Christmas: Troops\' Messages Home</media:title><yt:duration seconds=\'420\'/><yt:uploaded>2011-12-25T14:42:23.000Z</yt:uploaded><yt:videoid>kg_sZwIM6v0</yt:videoid></media:group><gd:rating average=\'4.142857\' max=\'5\' min=\'1\' numRaters=\'14\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'4\' viewCount=\'1057\'/><yt:rating numDislikes=\'3\' numLikes=\'11\'/></entry><entry gd:etag=\'W/&quot;Dk4MR347eCp7I2A9WhRWFUw.&quot;\'><id>tag:youtube.com,2008:video:TeDBErhh8Ps</id><published>2011-12-25T14:28:19.000Z</published><updated>2012-01-02T14:36:26.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Christmas\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'homeless\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'puppy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'animals\'/><title>Christmas Dog Loose In Newsroom</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/TeDBErhh8Ps?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=TeDBErhh8Ps&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TeDBErhh8Ps/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TeDBErhh8Ps/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TeDBErhh8Ps/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/TeDBErhh8Ps?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/TeDBErhh8Ps?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'215\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>A dog is for life, not just for Christmas. Carlton Spears from Battersea Dogs home with a very special dog called Ed.</media:description><media:keywords>Sky, News, Christmas, dogs, homeless, puppy, animals</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=TeDBErhh8Ps&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TeDBErhh8Ps/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:47.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TeDBErhh8Ps/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TeDBErhh8Ps/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:53.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TeDBErhh8Ps/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:47.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TeDBErhh8Ps/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:41.250\' yt:name=\'end\'/><media:title type=\'plain\'>Christmas Dog Loose In Newsroom</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'215\'/><yt:uploaded>2011-12-25T14:28:19.000Z</yt:uploaded><yt:videoid>TeDBErhh8Ps</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'12\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1\' viewCount=\'468\'/><yt:rating numDislikes=\'0\' numLikes=\'12\'/></entry><entry gd:etag=\'W/&quot;CUMGRX47eCp7I2A9WhRUFUQ.&quot;\'><id>tag:youtube.com,2008:video:VnVx8fD_2iQ</id><published>2011-12-22T15:58:32.000Z</published><updated>2012-01-26T15:57:04.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'David Attenborough\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'polar bear\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Attenborough\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Frozen Planet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sir David Attenborough\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Zoo\'/><title>David Attenborough Defends Bear Clip Filmed In Zoo</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/VnVx8fD_2iQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=VnVx8fD_2iQ&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VnVx8fD_2iQ/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VnVx8fD_2iQ/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VnVx8fD_2iQ/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VnVx8fD_2iQ/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/VnVx8fD_2iQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/VnVx8fD_2iQ/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'15\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/VnVx8fD_2iQ?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'254\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Sir David Attenborough has defended the use of archive footage in documentaries, following a row over scenes from his recent Frozen Planet series. The veteran broadcaster told Sky News \"making natural history film is an art\". Some viewers were outraged when it emerged that a scene in Frozen Planet, showing a bear giving birth, was filmed in a zoo. The programme makers were accused of misleading audiences into believing the scene had been captured in the wild, but later said it would have been impossible to have filmed the footage in the wild. Sir David, who is promoting his latest Sky 3D film, The Bachelor King 3D, said the decision to film in the zoo was made for the safety of the animal and the crew.</media:description><media:keywords>David Attenborough, polar bear, Attenborough, Frozen Planet, Sir David Attenborough, Zoo</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=VnVx8fD_2iQ&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VnVx8fD_2iQ/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:07\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VnVx8fD_2iQ/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VnVx8fD_2iQ/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:03.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VnVx8fD_2iQ/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:07\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VnVx8fD_2iQ/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:10.500\' yt:name=\'end\'/><media:title type=\'plain\'>David Attenborough Defends Bear Clip Filmed In Zoo</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'254\'/><yt:uploaded>2011-12-22T15:58:32.000Z</yt:uploaded><yt:videoid>VnVx8fD_2iQ</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'18\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1\' viewCount=\'1147\'/><yt:rating numDislikes=\'0\' numLikes=\'18\'/></entry><entry gd:etag=\'W/&quot;D0IFR347eCp7I2A9WhRVFEo.&quot;\'><id>tag:youtube.com,2008:video:dCxi_r80AiE</id><published>2011-12-20T22:20:52.000Z</published><updated>2012-01-13T17:25:16.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AUSTRALIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'COLD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SUMMER\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SNAP\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Australia Goes Through Freak Cold Summer</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/dCxi_r80AiE?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=dCxi_r80AiE&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dCxi_r80AiE/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dCxi_r80AiE/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dCxi_r80AiE/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/dCxi_r80AiE?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/dCxi_r80AiE?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'116\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>We\'re used to freezing weather at this time of year. But in Australia they\'re shivering through an unusual cold snap - making it one of the coldest summers there in decades.</media:description><media:keywords>AUSTRALIA, COLD, SUMMER, SNAP, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=dCxi_r80AiE&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dCxi_r80AiE/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:58\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dCxi_r80AiE/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dCxi_r80AiE/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:29\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dCxi_r80AiE/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:58\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dCxi_r80AiE/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:27\' yt:name=\'end\'/><media:title type=\'plain\'>Australia Goes Through Freak Cold Summer</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'116\'/><yt:uploaded>2011-12-20T22:20:52.000Z</yt:uploaded><yt:videoid>dCxi_r80AiE</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'2\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3\' viewCount=\'506\'/><yt:rating numDislikes=\'0\' numLikes=\'2\'/></entry><entry gd:etag=\'W/&quot;D0cCSX47eCp7I2A9WhRWFkk.&quot;\'><id>tag:youtube.com,2008:video:_BRdq6hWR_U</id><published>2011-12-20T21:17:35.000Z</published><updated>2012-01-04T02:44:28.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PIERS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MORGAN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PHONE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HACKING\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'TABLOID\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'EDITOR\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'LEVESON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'INQUIRY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CELEBRITIES\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MEDIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ETHICS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Piers Morgan Claims He Was \'Unaware\' Of Phone Hacking</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/_BRdq6hWR_U?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=_BRdq6hWR_U&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/_BRdq6hWR_U/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/_BRdq6hWR_U/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/_BRdq6hWR_U/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/_BRdq6hWR_U?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/_BRdq6hWR_U?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'195\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Former tabloid editor Piers Morgan says he was unaware of any phone hacking going on while he was in charge of the Daily Mirror. Mr Morgan, now a broadcaster in the United States, told the Leveson inquiry into media ethics that he had very little sympathy with celebrities who used the press for publicity and then claimed that their privacy had been invaded.</media:description><media:keywords>PIERS, MORGAN, PHONE, HACKING, TABLOID, EDITOR, LEVESON, INQUIRY, CELEBRITIES, MEDIA, ETHICS, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=_BRdq6hWR_U&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_BRdq6hWR_U/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:37.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_BRdq6hWR_U/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_BRdq6hWR_U/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:48.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_BRdq6hWR_U/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:37.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/_BRdq6hWR_U/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:26.250\' yt:name=\'end\'/><media:title type=\'plain\'>Piers Morgan Claims He Was \'Unaware\' Of Phone Hacking</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'195\'/><yt:uploaded>2011-12-20T21:17:35.000Z</yt:uploaded><yt:videoid>_BRdq6hWR_U</yt:videoid></media:group><gd:rating average=\'3.6666667\' max=\'5\' min=\'1\' numRaters=\'3\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'265\'/><yt:rating numDislikes=\'1\' numLikes=\'2\'/></entry><entry gd:etag=\'W/&quot;CUYEQH47eCp7I2A9WhRUGEg.&quot;\'><id>tag:youtube.com,2008:video:JsgN3MbdHWI</id><published>2011-12-16T14:11:44.000Z</published><updated>2012-01-29T16:05:01.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'panda\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pandas\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Edinburgh\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Edinburgh Zoo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'zoo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Tian Tian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Yang Guang\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Scotland\'/><title>Pandas At Edinburgh Zoo Meet Their Fans</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/JsgN3MbdHWI?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=JsgN3MbdHWI&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/JsgN3MbdHWI/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/JsgN3MbdHWI/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/JsgN3MbdHWI/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/JsgN3MbdHWI/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/JsgN3MbdHWI?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/JsgN3MbdHWI/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'2\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/JsgN3MbdHWI?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'156\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Scotland\'s giant pandas, the first to live in the UK for 17 years, have met their adoring public for the first time. Tian Tian and Yang Guang, also known as Sweetie and Sunshine, went on show to the general public at Edinburgh Zoo on Friday morning and they did not disappoint their fans. Demand for tickets has been so high that numbers were limited, with 600 pre-booked visitors finally getting the chance to see them in their specially-built enclosures. Groups of 50 visitors at a time were allowed into the panda viewing areas for up to 30 minutes in order to keep the disturbance of the animals to a minimum. Tian Tian and Yang Guang seemed totally unaffected by all the fuss.</media:description><media:keywords>panda, pandas, Edinburgh, Edinburgh Zoo, zoo, Tian Tian, Yang Guang, Scotland</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=JsgN3MbdHWI&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JsgN3MbdHWI/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:18\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JsgN3MbdHWI/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JsgN3MbdHWI/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:39\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JsgN3MbdHWI/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:18\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/JsgN3MbdHWI/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:57\' yt:name=\'end\'/><media:title type=\'plain\'>Pandas At Edinburgh Zoo Meet Their Fans</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'156\'/><yt:uploaded>2011-12-16T14:11:44.000Z</yt:uploaded><yt:videoid>JsgN3MbdHWI</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'7\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2\' viewCount=\'1193\'/><yt:rating numDislikes=\'0\' numLikes=\'7\'/></entry><entry gd:etag=\'W/&quot;CE4GQn47eCp7I2A9WhRVEk0.&quot;\'><id>tag:youtube.com,2008:video:PbRXsZc4rfs</id><published>2011-12-15T13:21:54.000Z</published><updated>2012-01-10T13:42:03.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sky news\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'news\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gaddafi\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'royal wedding\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tunisia\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'libya\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'egypt\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bin laden\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'arab spring\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'norway\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'London riots\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'murdoch\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jobs\'/><title>Sky News: Moving Picture Highlights Of 2011</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/PbRXsZc4rfs?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=PbRXsZc4rfs&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PbRXsZc4rfs/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PbRXsZc4rfs/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PbRXsZc4rfs/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/PbRXsZc4rfs/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/PbRXsZc4rfs?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/PbRXsZc4rfs/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'5\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/PbRXsZc4rfs?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'193\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Sky News takes a look back at 2011, one of the most dramatic years for news in decades.</media:description><media:keywords>sky news, news, gaddafi, royal wedding, tunisia, libya, egypt, bin laden, arab spring, norway, London riots, murdoch, jobs</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=PbRXsZc4rfs&amp;feature=youtube_gdata_player\'/><media:restriction type=\'country\' relationship=\'deny\'>DE</media:restriction><media:thumbnail url=\'http://i.ytimg.com/vi/PbRXsZc4rfs/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:36.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PbRXsZc4rfs/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PbRXsZc4rfs/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:48.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PbRXsZc4rfs/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:36.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/PbRXsZc4rfs/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:24.750\' yt:name=\'end\'/><media:title type=\'plain\'>Sky News: Moving Picture Highlights Of 2011</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'193\'/><yt:uploaded>2011-12-15T13:21:54.000Z</yt:uploaded><yt:videoid>PbRXsZc4rfs</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'5\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'5\' viewCount=\'1011\'/><yt:rating numDislikes=\'0\' numLikes=\'5\'/></entry><entry gd:etag=\'W/&quot;DE4ER347eCp7I2A9WhRQGEQ.&quot;\'><id>tag:youtube.com,2008:video:uEkjtwjOZ00</id><published>2011-12-14T21:08:26.000Z</published><updated>2011-12-14T21:08:26.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'LUCY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'COTTER\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ELIZEBETH\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'TAYLOR\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AUCTION\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'JEWELLERY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NECKLACE\'/><title>Hollywood\'s Golden Auction</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/uEkjtwjOZ00?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=uEkjtwjOZ00&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uEkjtwjOZ00/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uEkjtwjOZ00/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/uEkjtwjOZ00?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'denied\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'denied\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/uEkjtwjOZ00?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'143\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>video.news.sky.com As one of the great leading ladies of Hollywood\'s golden age, Elizabeth Taylor wasn\'t short of talent, husbands or jewellery. Now some of late actresses\' extraordinary collection is raising record prices and an auction that\'s due to last four days. Sky\'s Lucy Cotter reports.</media:description><media:keywords>SKY, NEWS, LUCY, COTTER, ELIZEBETH, TAYLOR, AUCTION, JEWELLERY, NECKLACE</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=uEkjtwjOZ00&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uEkjtwjOZ00/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:11.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uEkjtwjOZ00/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uEkjtwjOZ00/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:35.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uEkjtwjOZ00/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:11.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uEkjtwjOZ00/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:47.250\' yt:name=\'end\'/><media:title type=\'plain\'>Hollywood\'s Golden Auction</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'143\'/><yt:uploaded>2011-12-14T21:08:26.000Z</yt:uploaded><yt:videoid>uEkjtwjOZ00</yt:videoid></media:group><yt:statistics favoriteCount=\'1\' viewCount=\'142\'/></entry><entry gd:etag=\'W/&quot;DE4FQn47eCp7I2A9WhRQGEQ.&quot;\'><id>tag:youtube.com,2008:video:Jq4pSdDZREs</id><published>2011-12-14T21:08:33.000Z</published><updated>2011-12-14T21:08:33.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'news\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'david\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bowden\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'colin\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'myler\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'leveson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'inquiry\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jon\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'chapman\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'of\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'world\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mccann\'/><title>Ex-NOTW Editor Colin Myler Gives Evidence</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/Jq4pSdDZREs?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=Jq4pSdDZREs&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Jq4pSdDZREs/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Jq4pSdDZREs/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/Jq4pSdDZREs?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'denied\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'denied\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/Jq4pSdDZREs?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'153\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>video.news.sky.com The News Of The World\'s former legal manager says he told James Murdoch there was \"direct and hard evidence\" that phone hacking extended beyond a single reporter. After Tom Crone\'s evidence, the Leveson Inquiry then heard from the paper\'s former editor Colin Myler, who said anyone found to have acted illegally should face the full force of the law. Sky\'s Senior Correspondent David Bowden reports.</media:description><media:keywords>sky, news, david, bowden, colin, myler, leveson, inquiry, jon, chapman, of, the, world, mccann</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=Jq4pSdDZREs&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Jq4pSdDZREs/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:16.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Jq4pSdDZREs/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Jq4pSdDZREs/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:38.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Jq4pSdDZREs/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:16.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Jq4pSdDZREs/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:54.750\' yt:name=\'end\'/><media:title type=\'plain\'>Ex-NOTW Editor Colin Myler Gives Evidence</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'153\'/><yt:uploaded>2011-12-14T21:08:33.000Z</yt:uploaded><yt:videoid>Jq4pSdDZREs</yt:videoid></media:group><yt:statistics favoriteCount=\'1\' viewCount=\'129\'/></entry><entry gd:etag=\'W/&quot;CEcHRX47eCp7I2A9WhRQGUg.&quot;\'><id>tag:youtube.com,2008:video:8ZcHRaID3TA</id><published>2011-12-14T09:37:42.000Z</published><updated>2011-12-15T12:27:14.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'141211\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bear\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'in\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dumpster\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'canada\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2\'/><title>Vancouver: Bear Found Inside Dumpster</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/8ZcHRaID3TA?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=8ZcHRaID3TA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/8ZcHRaID3TA/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/8ZcHRaID3TA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/8ZcHRaID3TA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/8ZcHRaID3TA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/8ZcHRaID3TA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/8ZcHRaID3TA/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'3\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/8ZcHRaID3TA?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'32\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Vancouver residents have been warned to be \"bear aware\" after a black bear was spotted eating scraps of food from a rubbish truck. An animal conservation officer tranquilised the animal, which clung to the truck as the drugs took effect. The officer comforted the bear as it slowly drifted off and released its grip. A watching crowd cheered as the bear safely fell into a sling. The bear was then tagged and released, but there are concerns it could return to another urban area before settling down for hibernation.</media:description><media:keywords>141211, bear, in, dumpster, canada, 2</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=8ZcHRaID3TA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8ZcHRaID3TA/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:16\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8ZcHRaID3TA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8ZcHRaID3TA/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:08\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8ZcHRaID3TA/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:16\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8ZcHRaID3TA/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:24\' yt:name=\'end\'/><media:title type=\'plain\'>Vancouver: Bear Found Inside Dumpster</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'32\'/><yt:uploaded>2011-12-14T09:37:42.000Z</yt:uploaded><yt:videoid>8ZcHRaID3TA</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'5\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1\' viewCount=\'452\'/><yt:rating numDislikes=\'0\' numLikes=\'5\'/></entry><entry gd:etag=\'W/&quot;CUMGRX47eCp7I2A9WhRQF00.&quot;\'><id>tag:youtube.com,2008:video:W0rhmvyJ4kg</id><published>2011-12-12T15:23:44.000Z</published><updated>2011-12-12T15:23:44.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nick davies\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'guardian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'phone hacking\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'milly dowler\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mark lewis\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'news of the world\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hacking\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tom latchem\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'voicemail\'/><title>Phone Hacking: Nick Davies, Mark Lewis And Ex-News Of The World Journalist Tom Latchem</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/W0rhmvyJ4kg?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=W0rhmvyJ4kg&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/W0rhmvyJ4kg/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/W0rhmvyJ4kg/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/W0rhmvyJ4kg/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/W0rhmvyJ4kg/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/W0rhmvyJ4kg?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/W0rhmvyJ4kg/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'2\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/W0rhmvyJ4kg?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'1099\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>A heated row has blown up after the Guardian newspaper admitted police now believe that the News Of The World paper\'s staff might not have deleted crucial voicemails from the phone of murdered schoolgirl Milly Dowler. The initial revelations that journalists had deliberately deleted Milly\'s messages caused a public outcry and eventually the closure of the paper (NOTW). Nick Davies, the Guardian journalist who broke the original story, Mark Lewis, who is the Dowler\'s lawyer, and Tom Latchem, former NOTW TV Editor, joined Sky\'s Sarah Hewson to discuss the latest development.</media:description><media:keywords>nick davies, guardian, phone hacking, milly dowler, mark lewis, news of the world, hacking, tom latchem, voicemail</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=W0rhmvyJ4kg&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W0rhmvyJ4kg/default.jpg\' height=\'90\' width=\'120\' time=\'00:09:09.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W0rhmvyJ4kg/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W0rhmvyJ4kg/1.jpg\' height=\'90\' width=\'120\' time=\'00:04:34.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W0rhmvyJ4kg/2.jpg\' height=\'90\' width=\'120\' time=\'00:09:09.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/W0rhmvyJ4kg/3.jpg\' height=\'90\' width=\'120\' time=\'00:13:44.250\' yt:name=\'end\'/><media:title type=\'plain\'>Phone Hacking: Nick Davies, Mark Lewis And Ex-News Of The World Journalist Tom Latchem</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'1099\'/><yt:uploaded>2011-12-12T15:23:44.000Z</yt:uploaded><yt:videoid>W0rhmvyJ4kg</yt:videoid></media:group><yt:statistics favoriteCount=\'1\' viewCount=\'590\'/></entry><entry gd:etag=\'W/&quot;DEIGRn47eCp7I2A9WhRUGEk.&quot;\'><id>tag:youtube.com,2008:video:eQpuXM9xb40</id><published>2011-12-10T16:37:47.000Z</published><updated>2012-01-29T14:15:27.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Boris\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Berezovsky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Vladimir\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Putin\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Russia\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Russian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Moscow\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Protesters\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Demonstrators\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Protestors\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Marching\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'March\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Demonstrating\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Protest\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Protesting\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Complain\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Alleged\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Election\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Fraud\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Defiance\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'President\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Took\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Power\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Supporter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Former\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Friend\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Businessman\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Video\'/><title>Berezovsky: New Generation Of Russian Protesters Are Finding Their Voice</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/eQpuXM9xb40?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=eQpuXM9xb40&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/eQpuXM9xb40/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/eQpuXM9xb40/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/eQpuXM9xb40/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/eQpuXM9xb40/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/eQpuXM9xb40?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/eQpuXM9xb40/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'24\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/eQpuXM9xb40?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'448\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Tens of thousands of protesters have taken to the streets of cities across Russia to complain about alleged election fraud. It\'s the biggest show of defiance since Vladimir Putin took power more than a decade ago. One man who has been at the very heart of Russian politics is one-time supporter and former friend of Vladimir Putin, the businessman Boris Berezovsky. He told Sky News a new generation of Russian protesters are finding their voice.</media:description><media:keywords>Boris, Berezovsky, Vladimir, Putin, Russia, Russian, Moscow, Protesters, Demonstrators, Protestors, Marching, March, Demonstrating, Protest, Protesting, Complain, Alleged, Election, Fraud, Defiance, President, Took, Power, Politics, Supporter, Former, Friend, Businessman, Sky, News, Video</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=eQpuXM9xb40&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eQpuXM9xb40/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:44\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eQpuXM9xb40/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eQpuXM9xb40/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:52\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eQpuXM9xb40/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:44\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eQpuXM9xb40/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:36\' yt:name=\'end\'/><media:title type=\'plain\'>Berezovsky: New Generation Of Russian Protesters Are Finding Their Voice</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'448\'/><yt:uploaded>2011-12-10T16:37:47.000Z</yt:uploaded><yt:videoid>eQpuXM9xb40</yt:videoid></media:group><gd:rating average=\'2.8666666\' max=\'5\' min=\'1\' numRaters=\'30\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'4\' viewCount=\'1805\'/><yt:rating numDislikes=\'16\' numLikes=\'14\'/></entry><entry gd:etag=\'W/&quot;A0MDR347eCp7I2A9WhRVEEo.&quot;\'><id>tag:youtube.com,2008:video:J457tER-9HU</id><published>2011-12-07T15:45:07.000Z</published><updated>2012-01-09T03:24:36.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MOSCOW\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'VLADIMIR\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PUTIN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PARLIAMENTARY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ELECTIONS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PRO-KREMLIN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Moscow Police Clash With Anti-Putin Crowds</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/J457tER-9HU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=J457tER-9HU&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/J457tER-9HU/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/J457tER-9HU/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/J457tER-9HU/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/J457tER-9HU?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/J457tER-9HU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'129\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Police in Moscow are facing more anti-government protests following parliamentary elections. More than 250 demonstrators were arrested after facing off with supporters of the Russian Prime Minister Vladimir Putin. Pro-Kremlin youth groups were brought in to try to drown out the anti-government chants.</media:description><media:keywords>MOSCOW, VLADIMIR, PUTIN, PARLIAMENTARY, ELECTIONS, PRO-KREMLIN, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=J457tER-9HU&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/J457tER-9HU/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:04.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/J457tER-9HU/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/J457tER-9HU/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:32.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/J457tER-9HU/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:04.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/J457tER-9HU/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:36.750\' yt:name=\'end\'/><media:title type=\'plain\'>Moscow Police Clash With Anti-Putin Crowds</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'129\'/><yt:uploaded>2011-12-07T15:45:07.000Z</yt:uploaded><yt:videoid>J457tER-9HU</yt:videoid></media:group><gd:rating average=\'4.111111\' max=\'5\' min=\'1\' numRaters=\'9\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3\' viewCount=\'1137\'/><yt:rating numDislikes=\'2\' numLikes=\'7\'/></entry><entry gd:etag=\'W/&quot;CkQMSX47eCp7I2A9WhRQFEs.&quot;\'><id>tag:youtube.com,2008:video:GI5TI96zZZw</id><published>2011-12-06T20:11:17.000Z</published><updated>2011-12-09T19:53:08.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SYRIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SNIPER\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FIRE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HOMS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FREE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SYRIAN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ARMY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'UNITED\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NATIONS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SKY\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEWS\'/><title>Syria Under Attack</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/GI5TI96zZZw?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=GI5TI96zZZw&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/GI5TI96zZZw/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/GI5TI96zZZw/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/GI5TI96zZZw/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/GI5TI96zZZw?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/GI5TI96zZZw?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'422\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Innocent victims are being shot down by snipers in Homs every day. Sniper fire and all-out fighting between government troops and the defectors of the Free Syrian Army, the FSA, is constant. More than 4000 people have died since protests broke out in Syria in March, according to the United Nations.</media:description><media:keywords>SYRIA, SNIPER, FIRE, HOMS, FREE, SYRIAN, ARMY, UNITED, NATIONS, SKY, NEWS</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=GI5TI96zZZw&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/GI5TI96zZZw/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:31\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/GI5TI96zZZw/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/GI5TI96zZZw/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:45.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/GI5TI96zZZw/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:31\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/GI5TI96zZZw/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:16.500\' yt:name=\'end\'/><media:title type=\'plain\'>Syria Under Attack</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'422\'/><yt:uploaded>2011-12-06T20:11:17.000Z</yt:uploaded><yt:videoid>GI5TI96zZZw</yt:videoid></media:group><gd:rating average=\'3.6666667\' max=\'5\' min=\'1\' numRaters=\'9\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3\' viewCount=\'397\'/><yt:rating numDislikes=\'3\' numLikes=\'6\'/></entry><entry gd:etag=\'W/&quot;C0cMRn47eCp7I2A9WhRVFU0.&quot;\'><id>tag:youtube.com,2008:video:jE0hVo4lkco</id><published>2011-12-05T09:28:15.000Z</published><updated>2012-01-14T00:31:27.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'japan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'car crash\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cars\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'crash\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Shimonoseki\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ferrari\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Mercedes\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lamborghini\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chugoku\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kyushu\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hiroshima\'/><title>Japan: Car Crash Creates £2m Of Scrap Metal</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/jE0hVo4lkco?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=jE0hVo4lkco&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/jE0hVo4lkco/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/jE0hVo4lkco/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/jE0hVo4lkco/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/jE0hVo4lkco/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/jE0hVo4lkco?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/jE0hVo4lkco/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'33\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/jE0hVo4lkco?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'49\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>A multiple car crash in Japan has created an estimated £2m of scrap metal. Twelve of the 14 cars involved in the accident near Shimonoseki were supercars - including eight Ferraris, two Mercedes and a Lamborghini. The accident caused £2m of scrap metal (Pic: Kyodo News) Reports suggest the crash happened after a Mercedes was driven on the wrong side of the road on the Chugoku expressway. Japanese newspaper The Daily Yomiuri said 10 people were taken to hospital with minor injuries. The group of drivers was reportedly made up of self-employed \"car enthusiasts\", who were travelling from Kyushu to Hiroshima. Pictures of the scene show the motorway littered with debris from the damaged cars. Among the vehicles were two Ferrari F430s, two 360 Modenas, two F355s, a Lamborghini Diablo and a Nissan GTR.</media:description><media:keywords>japan, car crash, cars, crash, Shimonoseki, Ferrari, Mercedes, Lamborghini, Chugoku, Kyushu, Hiroshima</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=jE0hVo4lkco&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jE0hVo4lkco/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:24.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jE0hVo4lkco/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jE0hVo4lkco/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:12.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jE0hVo4lkco/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:24.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jE0hVo4lkco/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:36.750\' yt:name=\'end\'/><media:title type=\'plain\'>Japan: Car Crash Creates £2m Of Scrap Metal</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'49\'/><yt:uploaded>2011-12-05T09:28:15.000Z</yt:uploaded><yt:videoid>jE0hVo4lkco</yt:videoid></media:group><gd:rating average=\'4.7777777\' max=\'5\' min=\'1\' numRaters=\'36\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'13\' viewCount=\'54308\'/><yt:rating numDislikes=\'2\' numLikes=\'34\'/></entry><entry gd:etag=\'W/&quot;CUIBRX47eCp7I2A9WhRbFkQ.&quot;\'><id>tag:youtube.com,2008:video:tV3XEbwnMe8</id><published>2011-12-04T17:31:24.000Z</published><updated>2012-02-08T09:32:34.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Giant\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Pandas\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'First\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Britain\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Scotland\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Edinburgh\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Zoo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'China\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Arrived\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Home\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Tian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'and\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Yang\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Guang\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sunshine\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sweetie\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Airport\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Journey\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Zookeepers\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Native\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Born\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Panda\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cub\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'James\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Matthews\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Video\'/><title>Giant Pandas Arrive In Edinburgh</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/tV3XEbwnMe8?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=tV3XEbwnMe8&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/tV3XEbwnMe8/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/tV3XEbwnMe8/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/tV3XEbwnMe8/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/tV3XEbwnMe8/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/tV3XEbwnMe8?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/tV3XEbwnMe8/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'13\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/tV3XEbwnMe8?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'162\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>The first Giant Pandas to live in Britain for more than 20 years have arrived at their new home in Scotland. Tian Tian and Yang Guang - or Sunshine and Sweetie - arrived at Edinburgh Airport this lunchtime looking none the worse for the five thousand mile journey. Now Zookeepers hope the 8-year-olds will settle in so well they could produce Scotland\'s first native born panda cub. Sky\'s James Matthews was there to welcome them.</media:description><media:keywords>Giant, Pandas, First, Britain, Scotland, Edinburgh, Zoo, China, Arrived, New, Home, Tian, and, Yang, Guang, Sunshine, Sweetie, Airport, Journey, Zookeepers, Native, Born, Panda, Cub, Sky, News, James, Matthews, Video</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=tV3XEbwnMe8&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/tV3XEbwnMe8/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:21\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/tV3XEbwnMe8/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/tV3XEbwnMe8/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:40.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/tV3XEbwnMe8/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:21\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/tV3XEbwnMe8/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:01.500\' yt:name=\'end\'/><media:title type=\'plain\'>Giant Pandas Arrive In Edinburgh</media:title><yt:duration seconds=\'162\'/><yt:uploaded>2011-12-04T17:31:24.000Z</yt:uploaded><yt:videoid>tV3XEbwnMe8</yt:videoid></media:group><gd:rating average=\'4.5555553\' max=\'5\' min=\'1\' numRaters=\'18\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'6\' viewCount=\'7618\'/><yt:rating numDislikes=\'2\' numLikes=\'16\'/></entry><entry gd:etag=\'W/&quot;DUUASX47eCp7I2A9WhRQEE8.&quot;\'><id>tag:youtube.com,2008:video:K41LzCf-zqk</id><published>2011-12-04T17:29:07.000Z</published><updated>2011-12-04T19:34:08.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Unexploded\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Second\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'World\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'War\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Two\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'II\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'WWII\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bomb\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Explosive\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Device\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Explosion\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Defused\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Discovered\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Banks\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'River\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rhine\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Residents\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Patients\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Prisoners\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Forced\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Leave\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Evacuate\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Town\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Koblenz\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Evacuation\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Germany\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Post\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'History\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Video\'/><title>WWII Bomb Prompts Evacuation Of German City</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/K41LzCf-zqk?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=K41LzCf-zqk&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/K41LzCf-zqk/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/K41LzCf-zqk/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/K41LzCf-zqk/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/K41LzCf-zqk/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/K41LzCf-zqk?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/K41LzCf-zqk/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'0\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/K41LzCf-zqk?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'98\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>An unexploded World War Two bomb has been successfully defused after it was discovered on the banks of the River Rhine earlier in the week. 45000 people - including residents, patients and prisoners - were forced to leave the town of Koblenz in the biggest evacuation in Germany\'s post War history. Sky\'s Gamal Fanbulleh reports.</media:description><media:keywords>Unexploded, Second, World, War, Two, II, WWII, Bomb, Explosive, Device, Explosion, Defused, Discovered, Banks, River, Rhine, Residents, Patients, Prisoners, Forced, Leave, Evacuate, Town, Koblenz, Evacuation, Germany, Post, History, Sky, News, Video</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=K41LzCf-zqk&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/K41LzCf-zqk/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:49\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/K41LzCf-zqk/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/K41LzCf-zqk/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:24.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/K41LzCf-zqk/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:49\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/K41LzCf-zqk/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:13.500\' yt:name=\'end\'/><media:title type=\'plain\'>WWII Bomb Prompts Evacuation Of German City</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'98\'/><yt:uploaded>2011-12-04T17:29:07.000Z</yt:uploaded><yt:videoid>K41LzCf-zqk</yt:videoid></media:group><gd:rating average=\'3.6666667\' max=\'5\' min=\'1\' numRaters=\'3\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'6649\'/><yt:rating numDislikes=\'1\' numLikes=\'2\'/></entry><entry gd:etag=\'W/&quot;DkUDQX47eCp7I2A9WhRQEkk.&quot;\'><id>tag:youtube.com,2008:video:f34TO9PvAIU</id><published>2011-12-03T17:40:33.000Z</published><updated>2011-12-07T07:51:10.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gary\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'speed\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tributes\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'leeds\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'united\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'newcastle\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Newcastle United FC\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Leeds United AFC\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Football\'/><title>Gary Speed: Fans At Former Clubs Pay Tribute</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/f34TO9PvAIU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=f34TO9PvAIU&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/f34TO9PvAIU/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/f34TO9PvAIU/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/f34TO9PvAIU/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/f34TO9PvAIU/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/f34TO9PvAIU?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/f34TO9PvAIU/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'7\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/f34TO9PvAIU?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'19\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>news.sky.com It was an emotional day at Elland Road, where Leeds United fans paid tribute to their former player, Wales manager Gary Speed. There were also tributes from fans at Newcastle United, as Sky\'s Mike McCarthy reports.</media:description><media:keywords>gary, speed, tributes, leeds, united, newcastle, Newcastle United FC, Leeds United AFC, Football</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=f34TO9PvAIU&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/f34TO9PvAIU/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:09.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/f34TO9PvAIU/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/f34TO9PvAIU/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:04.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/f34TO9PvAIU/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:09.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/f34TO9PvAIU/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:14.250\' yt:name=\'end\'/><media:title type=\'plain\'>Gary Speed: Fans At Former Clubs Pay Tribute</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'19\'/><yt:uploaded>2011-12-03T17:40:33.000Z</yt:uploaded><yt:videoid>f34TO9PvAIU</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'4\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'0\' viewCount=\'1108\'/><yt:rating numDislikes=\'0\' numLikes=\'4\'/></entry><entry gd:etag=\'W/&quot;CEIAQX47eCp7I2A9WhRQEUg.&quot;\'><id>tag:youtube.com,2008:video:Vh9zVt9Va14</id><published>2011-12-03T16:10:20.000Z</published><updated>2011-12-06T06:22:20.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'panda\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'edinburgh\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'zoo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'china\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Giant Panda\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sunshine\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sweetie\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Tian Tian (giant Panda)\'/><title>Panda Journey: Giant Couple Leave For Edinburgh</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/Vh9zVt9Va14?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=Vh9zVt9Va14&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Vh9zVt9Va14/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Vh9zVt9Va14/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Vh9zVt9Va14/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Vh9zVt9Va14/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/Vh9zVt9Va14?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/Vh9zVt9Va14/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'5\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/Vh9zVt9Va14?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'140\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>news.sky.com The two giant pandas being loaned to Edinburgh Zoo have begun their long trip from China. Sunshine and Sweetie will spend 10 years in Scotland. Sky\'s Holly Williams reports on the start of their 5000 mile journey.</media:description><media:keywords>panda, edinburgh, zoo, china, Giant Panda, sunshine, sweetie, tian, Tian Tian (giant Panda)</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=Vh9zVt9Va14&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Vh9zVt9Va14/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:10\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Vh9zVt9Va14/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Vh9zVt9Va14/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:35\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Vh9zVt9Va14/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:10\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Vh9zVt9Va14/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:45\' yt:name=\'end\'/><media:title type=\'plain\'>Panda Journey: Giant Couple Leave For Edinburgh</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'140\'/><yt:uploaded>2011-12-03T16:10:20.000Z</yt:uploaded><yt:videoid>Vh9zVt9Va14</yt:videoid></media:group><gd:rating average=\'3.6666667\' max=\'5\' min=\'1\' numRaters=\'9\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2\' viewCount=\'1402\'/><yt:rating numDislikes=\'3\' numLikes=\'6\'/></entry><entry gd:etag=\'W/&quot;C0cERX47eCp7I2A9WhRVF04.&quot;\'><id>tag:youtube.com,2008:video:AX1j56evc8A</id><published>2011-12-02T13:32:24.000Z</published><updated>2012-01-16T16:23:24.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'panda\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pandas\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'edinburgh zoo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'china\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'chinese\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'yangguang\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tian tian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sunshine\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sweete\'/><title>Pandas Prepare For Life In Edinburgh Zoo</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/AX1j56evc8A?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=AX1j56evc8A&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/AX1j56evc8A/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/AX1j56evc8A/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/AX1j56evc8A/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/AX1j56evc8A/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/AX1j56evc8A?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/AX1j56evc8A/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'16\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/AX1j56evc8A?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'141\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>Edinburgh Zoo is about to take delivery of two of the rarest animals on the planet - a pair of giant pandas on loan from the Chinese government. Sunshine and Sweetie - Yangguang and Tian Tian in Chinese - are both seven-years-old. They have grown up together in the misty mountains of southwest China. On Sunday they will embark on a 5000 mile journey to Scotland, where they will become star exhibits at the Edinburgh Zoo. The Royal Zoological Society of Scotland will pay more than £600000 a year for the loan of the pandas, plus another £70000 on imported bamboo. The pair eat 18000kg of the plant every year. Sunshine and Sweetie will fly to the UK on a specially fitted Fedex cargo plane, along with their \"nanny\" Xie Hao.</media:description><media:keywords>panda, pandas, edinburgh zoo, china, chinese, yangguang, tian tian, sunshine, sweete</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=AX1j56evc8A&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AX1j56evc8A/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:10.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AX1j56evc8A/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AX1j56evc8A/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:35.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AX1j56evc8A/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:10.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/AX1j56evc8A/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:45.750\' yt:name=\'end\'/><media:title type=\'plain\'>Pandas Prepare For Life In Edinburgh Zoo</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'141\'/><yt:uploaded>2011-12-02T13:32:24.000Z</yt:uploaded><yt:videoid>AX1j56evc8A</yt:videoid></media:group><gd:rating average=\'4.7894735\' max=\'5\' min=\'1\' numRaters=\'19\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'6\' viewCount=\'4270\'/><yt:rating numDislikes=\'1\' numLikes=\'18\'/></entry><entry gd:etag=\'W/&quot;D0ENSH47eCp7I2A9WhRVE0w.&quot;\'><id>tag:youtube.com,2008:video:cAEsOacRbNk</id><published>2011-11-27T11:28:30.000Z</published><updated>2012-01-11T21:01:39.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jetman\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Man\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Suit\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Fly\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Flies\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Aircraft\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Wings\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Formation\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Adventurer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Swiss\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Alps\'/><title>Jetman Uses Custom-Built Suit To Fly In Formation Over Alps</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/cAEsOacRbNk?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=cAEsOacRbNk&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/cAEsOacRbNk/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/cAEsOacRbNk/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/cAEsOacRbNk/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/cAEsOacRbNk/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/users/skynews/uploads/cAEsOacRbNk?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>skynews</name><uri>http://gdata.youtube.com/feeds/api/users/oMdktPbSTixAyNGwb-UYkQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/cAEsOacRbNk/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'17\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/cAEsOacRbNk?version=3&amp;f=user_uploads&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'110\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>skynews</media:credit><media:description type=\'plain\'>video.news.sky.com A man has used a custom-built jet suit to fly alongside two Albatross aircraft above the Swiss Alps. Adventurer Yves Rossy flew over the mountain range in formation with the aircraft.</media:description><media:keywords>Jetman, Jet, Man, Suit, Fly, Flies, Aircraft, Wings, Formation, Adventurer, Swiss, Alps</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=cAEsOacRbNk&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/cAEsOacRbNk/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:55\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/cAEsOacRbNk/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/cAEsOacRbNk/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:27.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/cAEsOacRbNk/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:55\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/cAEsOacRbNk/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:22.500\' yt:name=\'end\'/><media:title type=\'plain\'>Jetman Uses Custom-Built Suit To Fly In Formation Over Alps</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'110\'/><yt:uploaded>2011-11-27T11:28:30.000Z</yt:uploaded><yt:videoid>cAEsOacRbNk</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'26\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'8\' viewCount=\'3430\'/><yt:rating numDislikes=\'0\' numLikes=\'26\'/></entry></feed>', now(), now())
