if (!Function.prototype.bindAsEventListener) {
	Function.prototype.bindAsEventListener = function() {
		var __method=this,args=arguments,object=args[0];
		return function(event) {var a = args;a[0]=(event || window.event);return __method.apply(object,a);}
	}
}
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.replace(/"/g, "&quot;");// "
					var title = jsonArr[i].title_esc + (this.ds.thumb_show_length?' (' + 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 + "</span>";
						}
						if (this.ds.thumb_show_author) {
							at += '<span class="ah">' + (this.ds.thumb_show_labels?'<span class="lb">Author: </span>':'') + 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;
							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>':'') + 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>':'') + Math.customRound(jsonArr[i].rating_avg, 1) + "</span>";
						if (this.ds.thumb_show_description) {
							at += '<span class="d">' + 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.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 () {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',
	pldelta: 0,
data: {sid:1, loadToCache:false, total: 1286, pgs:26, results: [{id:'4QMp-Bv2yuk',title:'Uproar As UK Firm Drills For Oil In The Arctic',author:'skynews',real_length:'188',length_seconds:'03:08',rating_avg:'4.6',rating_count:'9',view_count:'195',description:'video.news.sky.com As the cleanup continues in the Gulf of Mexico after the BP oil spill, another British company, Cairn Energy, is beginning oil exploration off the coast of Greenland. It has been widely condemned by environmental groups, who have called for a halt to drilling in the arctic. Sky\'s Katie Stallard is the first British journalist to travel to the region.',tags:'Greenland, Oil, Mining, Cairn, Energy, Environmental, Groups, Drilling, Arctic, Circle, Rig, Sky, News, Video, Katie, Stallard, Journalist, Travel, Gulf, of, Mexico, BP, British, Iceberg, Alley, Ice, Davis, Strait',thumbnail_url:'http://img.youtube.com/vi/4QMp-Bv2yuk/default.jpg',upload_time:'1280517473',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/4QMp-Bv2yuk/related?v=2',ord:'0',isprivate:'',t:'v'}, {id:'SYL96ZGbP4g',title:'Liam Promises \'No Oasis Reunion\' As He Launches Own Clothing Range',author:'skynews',real_length:'160',length_seconds:'02:40',rating_avg:'5',rating_count:'1',view_count:'147',description:'video.news.sky.com Rock star Liam Gallagher has branched out - into the fashion world. The former Oasis singer has launched his own clothing range in London\'s Carnaby Street. But, as he told Sky\'s Entertainment Correspondent Steve Hargrave, he\'s also working on a new album AND a book!',tags:'Liam, Gallagher, Rock, Star, Fashion, World, Oasis, Singer, Clothing, Clothes, Designer, Designs, Range, London, Carnaby, Street, Sky, News, Entertainment, Correspondent, Steve, Hargrave, New, Album, Book, Video, Reunion, Pretty, Green, Beady, Eye',thumbnail_url:'http://img.youtube.com/vi/SYL96ZGbP4g/default.jpg',upload_time:'1280517302',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/SYL96ZGbP4g/related?v=2',ord:'1',isprivate:'',t:'v'}, {id:'P4-DYbIIt4A',title:'Bull-fighting banned in part of Spain',author:'skynews',real_length:'127',length_seconds:'02:07',rating_avg:'4.6',rating_count:'9',view_count:'347',description:'Catalonia ends barbaric practice',tags:'bulls, bull-fighting, danger, catalonia, barcelona, torture, animal rights, matador',thumbnail_url:'http://img.youtube.com/vi/P4-DYbIIt4A/default.jpg',upload_time:'1280343609',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/P4-DYbIIt4A/responses?v=2',ord:'2',isprivate:'',t:'v'}, {id:'MYyX9yVt9uQ',title:'Swimmer sets unwanted Channel-crossing record',author:'skynews',real_length:'227',length_seconds:'03:47',rating_avg:'5',rating_count:'3',view_count:'116',description:'Tides force Jackie to takes 44 mile trip',tags:'swimmer, swim, english channel, crossing, record, tides, 44 miles',thumbnail_url:'http://img.youtube.com/vi/MYyX9yVt9uQ/default.jpg',upload_time:'1280343350',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/MYyX9yVt9uQ/responses?v=2',ord:'3',isprivate:'',t:'v'}, {id:'-ypm2VoQT-A',title:'A-Team Put On The Jazz at London Premiere',author:'skynews',real_length:'182',length_seconds:'03:02',rating_avg:'5',rating_count:'1',view_count:'212',description:'Stars all fans of 80s TV hit show',tags:'a-team, premiere, tv, hit, show, plan, 80s, london, murdoch, hannibal, face, ba',thumbnail_url:'http://img.youtube.com/vi/-ypm2VoQT-A/default.jpg',upload_time:'1280260448',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/-ypm2VoQT-A/responses?v=2',ord:'4',isprivate:'',t:'v'}, {id:'Hy5Ml5ZqUhc',title:'Huge Losses For BP As Hayward Move Confirmed',author:'skynews',real_length:'207',length_seconds:'03:27',rating_avg:'5',rating_count:'2',view_count:'35',description:'Gulf spill to blame for 11 billion losses',tags:'BP, loss, oil, gulf, spill hayward, huge, billion, clean-up, explosion, rig, disaster, environment',thumbnail_url:'http://img.youtube.com/vi/Hy5Ml5ZqUhc/default.jpg',upload_time:'1280260245',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Hy5Ml5ZqUhc/responses?v=2',ord:'5',isprivate:'',t:'v'}, {id:'nK_j0z9at6s',title:'Olympian Work: Behind The Scenes At 2012 Stadium',author:'skynews',real_length:'119',length_seconds:'01:59',rating_avg:'5',rating_count:'3',view_count:'267',description:'video.news.sky.com With two years to go until the London Olympics, Sky News meets some of the workers building the centrepiece stadium - including one with wings!',tags:'sky, news, olympics, london, 2012',thumbnail_url:'http://img.youtube.com/vi/nK_j0z9at6s/default.jpg',upload_time:'1280171641',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/nK_j0z9at6s/related?v=2',ord:'6',isprivate:'',t:'v'}, {id:'POfEvNNM_N0',title:'New Faces: Transplant Man Goes Public',author:'skynews',real_length:'128',length_seconds:'02:08',rating_avg:'5',rating_count:'8',view_count:'4538',description:'video.news.sky.com Spanish man Oscar is the world\'s first recipient of a full face transplant. He\'s made his story public after a successful operation to rebuild his face, after he accidentally shot himself in the head.',tags:'sky, news, face, transplant, oscar, spain',thumbnail_url:'http://img.youtube.com/vi/POfEvNNM_N0/default.jpg',upload_time:'1280171493',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/POfEvNNM_N0/related?v=2',ord:'7',isprivate:'',t:'v'}, {id:'gjVum75ap2M',title:'Singing Nuns Get Major Record Deal',author:'skynews',real_length:'95',length_seconds:'01:35',rating_avg:'4.5',rating_count:'8',view_count:'1804',description:'video.news.sky.com A group of Benedictine nuns who live in complete seclusion in the South of France have signed a major record deal with the company behind Lady Gaga and Amy Winehouse. The new chart hopefuls won a worldwide search of more than 70 convents before signing to Decca Records - part of Universal Music. Lisa Knights has the details.',tags:'singing, nuns, lady, gaga, amy, winehouse, record, label, sky, news',thumbnail_url:'http://img.youtube.com/vi/gjVum75ap2M/default.jpg',upload_time:'1280062094',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/gjVum75ap2M/related?v=2',ord:'8',isprivate:'',t:'v'}, {id:'7AZ9MkBIhL8',title:'Snooker Star Higgins Dies At 61',author:'skynews',real_length:'98',length_seconds:'01:38',rating_avg:'5',rating_count:'4',view_count:'1074',description:'Tributes are being paid to one of snooker\'s greatest-ever players, Alex \'Hurricane\' Higgins, who died yesterday aged 61. The two-times World Snooker Champion had suffered from throat cancer for more than a decade. Amy Lewis reports',tags:'higgins, world, snooker, champion, cancer, ace, sky, news',thumbnail_url:'http://img.youtube.com/vi/7AZ9MkBIhL8/default.jpg',upload_time:'1280061894',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/7AZ9MkBIhL8/related?v=2',ord:'9',isprivate:'',t:'v'}, {id:'A_wuaU6PELg',title:'Oz Sex Workers: Legal Prostitution Is "Safer"',author:'skynews',real_length:'205',length_seconds:'03:25',rating_avg:'4.8',rating_count:'17',view_count:'2132',description:'video.news.sky.com An Australian expert tells Sky News the UK would have fewer murders if prostitution was made legal. Sky\'s Ian Woods is shown around a legal brothel in Sydney by "Randy Dollars"',tags:'sky, news, sex, prostitute, prostitution, randy, dollars, ian, woods',thumbnail_url:'http://img.youtube.com/vi/A_wuaU6PELg/default.jpg',upload_time:'1279981780',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/A_wuaU6PELg/related?v=2',ord:'10',isprivate:'',t:'v'}, {id:'gc3s6icT2_Q',title:'PM In War Gaffe Over Special Relationship',author:'skynews',real_length:'144',length_seconds:'02:24',rating_avg:'3.7',rating_count:'3',view_count:'572',description:'The PM tells Sky News Britain is the \'junior partner\' to the US and makes a gaffe about the Second World War. Sky\'s Robert Nisbet reports.',tags:'PM, In, War, Gaffe, Over, Special, Relationship, David, Cameron, Sky, News, Robert, Nisbet',thumbnail_url:'http://img.youtube.com/vi/gc3s6icT2_Q/default.jpg',upload_time:'1279738382',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/gc3s6icT2_Q/related?v=2',ord:'11',isprivate:'',t:'v'}, {id:'WChPMnpJnco',title:'PM Discusses The Fate Of Hacker Gary McKinnon',author:'skynews',real_length:'154',length_seconds:'02:34',rating_avg:'5',rating_count:'2',view_count:'141',description:'A surprise addition to the talks between the Prime Minister and president was the fate of Gary McKinnon. Sky\'s Jane Dougall reports.',tags:'PM, Discusses, The, Fate, Of, Gary, mckinnon, Hacker, Computer, secret, files, Sky, News, Jane, Dougall',thumbnail_url:'http://img.youtube.com/vi/WChPMnpJnco/default.jpg',upload_time:'1279738374',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/WChPMnpJnco/related?v=2',ord:'12',isprivate:'',t:'v'}, {id:'5oUpVRBEBhQ',title:'Karzai Makes Afghanistan Security Pledge',author:'skynews',real_length:'131',length_seconds:'02:11',rating_avg:'3.7',rating_count:'3',view_count:'117',description:'Afghanistan\'s president says he wants his country to take care of its own security by 2014. Hamid Karzai made the announcement at a major conference on Afghanistan\'s future in Kabul. From there, Sky\'s Niall Paterson reports.',tags:'Karzai, Makes, Afghanistan, Security, Pledge, Sky, News, Niall, Paterson, Kabul, future',thumbnail_url:'http://img.youtube.com/vi/5oUpVRBEBhQ/default.jpg',upload_time:'1279653016',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/5oUpVRBEBhQ/related?v=2',ord:'13',isprivate:'',t:'v'}, {id:'w3NsA19dLh8',title:'Cameron: Al Megrahi Release Was Wrong',author:'skynews',real_length:'119',length_seconds:'01:59',rating_avg:'3.7',rating_count:'6',view_count:'299',description:'With BP\'s alleged involvement with the release of the Lockerbie bomber likely to feature in talks between David Cameron and President Obama, the Prime Minister has told US radio that freeing Abdelbaset al Megrahi was wrong.',tags:'PM, David, Cameron, Al, Megrahi, Release, Was, Wrong, Sky, News, BP, Lockerbie, bomber',thumbnail_url:'http://img.youtube.com/vi/w3NsA19dLh8/default.jpg',upload_time:'1279653021',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/w3NsA19dLh8/related?v=2',ord:'14',isprivate:'',t:'v'}, {id:'J4Bh8x7CImA',title:'England Footie Fan Scoops World Cup Million',author:'skynews',real_length:'109',length_seconds:'01:49',rating_avg:'4',rating_count:'4',view_count:'254',description:'An English football fan has told Sky News how a World Cup bet left him feeling a million dollars. Sky\'s Frazer Maude has more.',tags:'Sky, News, England, football, fan, scoops, millions, millionaire, winner, bet, World, Cup',thumbnail_url:'http://img.youtube.com/vi/J4Bh8x7CImA/default.jpg',upload_time:'1279549260',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/J4Bh8x7CImA/related?v=2',ord:'15',isprivate:'',t:'v'}, {id:'ByXjjp-o9GM',title:'Exclusive: Training With The Afghan Taliban',author:'skynews',real_length:'227',length_seconds:'03:47',rating_avg:'4.8',rating_count:'17',view_count:'1211',description:'Sky News\' Alex Crawford has been given unprecedented access to Taliban militants fighting coalition forces in Afghanistan.',tags:'Sky, News, Alex, Crawford, Taliban, Afghanistan, training, militants, coalition, forces, access',thumbnail_url:'http://img.youtube.com/vi/ByXjjp-o9GM/default.jpg',upload_time:'1279549251',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/ByXjjp-o9GM/related?v=2',ord:'16',isprivate:'',t:'v'}, {id:'OtZiyzPRQaI',title:'Police Tested Taser Before Using On Raoul Moat',author:'skynews',real_length:'175',length_seconds:'02:55',rating_avg:'3.5',rating_count:'8',view_count:'575',description:'video.news.sky.com Rothbury residents have told Sky News they saw police marksmen receiving a delivery of controversial tasers -- then test-firing them on bags of garden rubbish -- just hours before the stand-off with gunman Raoul Moat. Gerard Tubb has this exclusive report.',tags:'raoul, moat, gunman, ramage, rothbury, sam, stobbart, sky, news',thumbnail_url:'http://img.youtube.com/vi/OtZiyzPRQaI/default.jpg',upload_time:'1279379414',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/OtZiyzPRQaI/related?v=2',ord:'17',isprivate:'',t:'v'}, {id:'UWqN_ZIRsGQ',title:'Does The Oil Cap Fit? BP Finds Out',author:'skynews',real_length:'153',length_seconds:'02:33',rating_avg:'5',rating_count:'2',view_count:'235',description:'video.news.sky.com Pressure tests are still underway in the Gulf of Mexico as BP monitors its temporary capping of the oil leak. But there are still fears the well could rupture. And President Obama is keen for BP to find aa more permanent solution. Meanwhile the oil giant has already paid out 201 million dollars in compensation to those affected by the spill. Our US Correspondent Robert Nisbet has more.',tags:'Bp, oil, spill, gulf, of, mexico, obama, cap, sky, news',thumbnail_url:'http://img.youtube.com/vi/UWqN_ZIRsGQ/default.jpg',upload_time:'1279379327',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/UWqN_ZIRsGQ/related?v=2',ord:'18',isprivate:'',t:'v'}, {id:'bT5OsJCjZa0',title:'Raoul Moat: Analysis Of Britain\'s Biggest Manhunt',author:'skynews',real_length:'211',length_seconds:'03:31',rating_avg:'4.6',rating_count:'9',view_count:'3689',description:'video.news.sky.com The death of Raoul Moat brings to a close one of the biggest ever manhunts Britain has ever seen. It began a week ago ater Moat shot and wounded his former girlfriend Samantha Stobbart and killed her new partner Chris Brown. Our Home Affairs Correspondent Mark White has been looking at the police investigation.',tags:'raoul, moat, britains, biggest, manhunt, police, gazza, kay, burley, sky, news',thumbnail_url:'http://img.youtube.com/vi/bT5OsJCjZa0/default.jpg',upload_time:'1278771264',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/bT5OsJCjZa0/related?v=2',ord:'19',isprivate:'',t:'v'}, {id:'2TJLlAl7sIU',title:'Raoul Moat Kills Himself After Police Stand-Off',author:'skynews',real_length:'181',length_seconds:'03:01',rating_avg:'3.9',rating_count:'7',view_count:'3925',description:'video.news.sky.com A six hour stand-off with police came to an end when Moat took his own life in the early hours of this morning. The drama began to unfold just after seven last night when Moat was spotted close to the centre of the Rothbury. He was surrounded by armed officers on the river bank which runs through the vilage. Police negotiators tried to persuade him to give himself up, but just after 1 o\'clock in the morning he shot himself.',tags:'raoul, moat, britain, most, wanted, criminal, rothbury, police, kay, burley, sky, news',thumbnail_url:'http://img.youtube.com/vi/2TJLlAl7sIU/default.jpg',upload_time:'1278771169',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/2TJLlAl7sIU/related?v=2',ord:'20',isprivate:'',t:'v'}, {id:'-Mb3WLoRMjw',title:'Raoul Moat: Latest On Police Hunt',author:'skynews',real_length:'173',length_seconds:'02:53',rating_avg:'5',rating_count:'3',view_count:'5523',description:'video.news.sky.com Detectives still believe he\'s in this area; they\'re certain they\'ve located the spot where he\'s been hiding out -- AND they\'ve discovered another letter, penned by the suspected killer. They\'ve also offered a sizable reward for information leading to his successful capture. Sky\'s Mike McCarthy is close to the spot where Moat has been camped out at Wagtail Farm - Mike.',tags:'raoul, moat, man, hunt, police, murders, sky, news',thumbnail_url:'http://img.youtube.com/vi/-Mb3WLoRMjw/default.jpg',upload_time:'1278533784',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/-Mb3WLoRMjw/related?v=2',ord:'21',isprivate:'',t:'v'}, {id:'FJ_LEC7k3xA',title:'Hurricane Alex Hits Mexico',author:'skynews',real_length:'118',length_seconds:'01:58',rating_avg:'5',rating_count:'4',view_count:'1126',description:'Storm delays oil spill clean-up',tags:'alex, hurricane, storm, oil, delays, mexico, usa environment hot topics',thumbnail_url:'http://img.youtube.com/vi/FJ_LEC7k3xA/default.jpg',upload_time:'1278012485',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/FJ_LEC7k3xA/responses?v=2',ord:'22',isprivate:'',t:'v'}, {id:'4Bo9d_4N_2M',title:'Royal Tour',author:'skynews',real_length:'191',length_seconds:'03:11',rating_avg:'4.6',rating_count:'11',view_count:'2019',description:'Prince Harry visiting Botswana where he will later be joined by his brother',tags:'Sky, News, Prince, Harry, William, Botswana, Tour, Royal',thumbnail_url:'http://img.youtube.com/vi/4Bo9d_4N_2M/default.jpg',upload_time:'1276542975',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/4Bo9d_4N_2M/related?v=2',ord:'23',isprivate:'',t:'v'}, {id:'WI_9KIXGj2w',title:'Singing Eskimo is Hot in the UK',author:'skynews',real_length:'156',length_seconds:'02:36',rating_avg:'4.8',rating_count:'16',view_count:'1168',description:'video.news.sky.com Coming in from the cold - a musical phenomenon has arrived in the UK from the frozen wastelands of Greenland. Simon Lynge is an Eskimo who was discovered by the man who engineered Michael Jackson\'s \'Thriller\' and \'Bad\' albums. He\'s now touring the UK, and his first album is selling like hot cakes. Steve Hargrave reports.',tags:'eskimo, singing, michael, jackson, simonlynge, sky, news',thumbnail_url:'http://img.youtube.com/vi/WI_9KIXGj2w/default.jpg',upload_time:'1276454884',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/WI_9KIXGj2w/related?v=2',ord:'24',isprivate:'',t:'v'}, {id:'f9iOH1BEBm4',title:'How To Beat The Bullies',author:'skynews',real_length:'377',length_seconds:'06:17',rating_avg:'3.4',rating_count:'5',view_count:'1232',description:'video.news.sky.com nothing new about bullying, but it has become harder for victims to escape from the taunts. With mobile phones and networking sites playing an increasingly large role in teenagers social lives - the insults dont stop at the end of the schoolday. New research from the charity Beatbullying show that almost half of all child suicides in the UK are down to bullying.',tags:'bullying, stop, the, bullies, bullied, victim, suicide, sky, news',thumbnail_url:'http://img.youtube.com/vi/f9iOH1BEBm4/default.jpg',upload_time:'1276454357',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/f9iOH1BEBm4/related?v=2',ord:'25',isprivate:'',t:'v'}, {id:'-pQ25LBXAjA',title:'Capello Talks Before Englands First World Cup Game',author:'skynews',real_length:'534',length_seconds:'08:54',rating_avg:'4.1',rating_count:'14',view_count:'1649',description:'video.news.sky.com After months of anticipation the World Cup is underway. England manager Fabio Capello held a press conference ahead of England\'s match against the USA.',tags:'england, capello, rooney, south, africa, world, cup, mandela, sky, news',thumbnail_url:'http://img.youtube.com/vi/-pQ25LBXAjA/default.jpg',upload_time:'1276289324',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/-pQ25LBXAjA/related?v=2',ord:'26',isprivate:'',t:'v'}, {id:'jBvyUYVKJ_Y',title:'Britain\'s Biggest Python?',author:'skynews',real_length:'113',length_seconds:'01:53',rating_avg:'3.7',rating_count:'9',view_count:'1051',description:'video.news.sky.com Now, if you don\'t like snakes you might want to look away now. Chester Zoo has been checking the vital statistics of one of it\'s scaliest- and possibly scariest- residents... Jane Dougall reports.',tags:'python, snake, britain\'s, biggest, animals, zoo, chester, sky, news',thumbnail_url:'http://img.youtube.com/vi/jBvyUYVKJ_Y/default.jpg',upload_time:'1276289281',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/jBvyUYVKJ_Y/related?v=2',ord:'27',isprivate:'',t:'v'}, {id:'0p42Ceo1VJw',title:'World Cup: Crackdown On Football Hooligans',author:'skynews',real_length:'133',length_seconds:'02:13',rating_avg:'5',rating_count:'6',view_count:'2484',description:'video.news.sky.com Less than 24 hours to go until Africa\'s first World Cup - and, for the fans, there\'s no other place to be than there. For some in England though, their World Cup journey is already over. Police swooping to seize the passports of known hooligans they fear might be trying to travel. Sky\'s Home Affairs Correspondent Mark White reports.',tags:'World, Cup, South, Africa, England, Football, Soccer, Footy, Footie, Hooligans, Fans, Police, Crack, Down, Crackdown, Seize, Passports, Travel, Sky, News, Video',thumbnail_url:'http://img.youtube.com/vi/0p42Ceo1VJw/default.jpg',upload_time:'1276194791',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/0p42Ceo1VJw/related?v=2',ord:'28',isprivate:'',t:'v'}, {id:'RSXAWqQGNmM',title:'World Cup South Africa: The Host Nation\'s Amazing Journey',author:'skynews',real_length:'117',length_seconds:'01:57',rating_avg:'4.2',rating_count:'5',view_count:'736',description:'video.news.sky.com As Africa\'s first ever world cup officially opens - the host nation say it\'s their chance to showcase their country\'s amazing journey. They\'ve lived through apartheid and witnessed Nelson Mandela\'s release - and now it\'s time to show off the transformation. Our Africa correspondent Emma Hurd reports.',tags:'World, Cup, South, Africa, England, Football, Soccer, Footy, Footie, Host, Nation, Soweto, Culture, Music, Stadium, Apartheid, Nelson, Mandela, Sky, News, Video',thumbnail_url:'http://img.youtube.com/vi/RSXAWqQGNmM/default.jpg',upload_time:'1276194614',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/RSXAWqQGNmM/related?v=2',ord:'29',isprivate:'',t:'v'}, {id:'xOzDaVnWYqo',title:'Rio Replaced: Dawson Joins England Team in SA',author:'skynews',real_length:'120',length_seconds:'02:00',rating_avg:'5',rating_count:'6',view_count:'1660',description:'video.news.sky.com Michael Dawson has joined the England World Cup squad for training - just hours after landing in South Africa to replace the injured Rio Ferdinand. &Acirc;&curren;W1 35 ]] C2.5 G 0 [[ *cga tag RUSTENBURG LVO Dawson was all smiles as he hit the pitch on arrival at the team\'s headquarters in Rustenburg. The 26-year-old is as yet uncapped. Liverpool skipper Steven Gerrard has been named England captain for the duration of the tournament in Ferdinand\'s absence.',tags:'05062010WORLDCUPYOUTUBE',thumbnail_url:'http://img.youtube.com/vi/xOzDaVnWYqo/default.jpg',upload_time:'1275763423',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/xOzDaVnWYqo/related?v=2',ord:'30',isprivate:'',t:'v'}, {id:'Esla8bCqapA',title:'England Gets Ready For World Cup',author:'skynews',real_length:'119',length_seconds:'01:59',rating_avg:'3.2',rating_count:'9',view_count:'616',description:'video.news.sky.com Retailers are hoping for a World Cup bounce in profits from England\'s footballers this summer, with at least a billion pounds in sales expected from merchandise and food. And that figure may double if England makes the final -- as Amy Lewis reports.',tags:'world, cup, south, africa, football, england, team, rio, ferdinand, sky, news',thumbnail_url:'http://img.youtube.com/vi/Esla8bCqapA/default.jpg',upload_time:'1275763245',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Esla8bCqapA/responses?v=2',ord:'31',isprivate:'',t:'v'}, {id:'Nr4ZOiVLyYQ',title:'Injection Could One Day Eliminate Breast Cancer',author:'skynews',real_length:'147',length_seconds:'02:27',rating_avg:'4.2',rating_count:'5',view_count:'929',description:'video.news.sky.com An American scientist is claiming to have developed a jab that could one-day eliminate breast cancer. The vaccine, which goes on trial within a year, has been shown to stop tumours ever appearing and also to attack those that are already present. Sky\'s Simon Newton has the details.',tags:'jab, injection, breast, cancer, ground, breaking, us, sky, news',thumbnail_url:'http://img.youtube.com/vi/Nr4ZOiVLyYQ/default.jpg',upload_time:'1275335123',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Nr4ZOiVLyYQ/related?v=2',ord:'32',isprivate:'',t:'v'}, {id:'lD9k4La2xK8',title:'Bank Holiday: Day Of The Rolling Cheese',author:'skynews',real_length:'150',length_seconds:'02:30',rating_avg:'5',rating_count:'5',view_count:'1193',description:'video.news.sky.com It\'s the bank holiday ritual they couldn\'t ban... the noble rolling of the cheese. They said the huge crowds made the event unsafe. But, as Katie Stallard reports, they hadn\'t counted on a group of intrepid rebels.',tags:'cheese, rolling, english, british, bank, holiday, tradition, day, of, sky, news',thumbnail_url:'http://img.youtube.com/vi/lD9k4La2xK8/default.jpg',upload_time:'1275335039',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/lD9k4La2xK8/related?v=2',ord:'33',isprivate:'',t:'v'}, {id:'6K5BHsjj7p8',title:'Obama On BP Fail: \'Heartbreaking\'',author:'skynews',real_length:'108',length_seconds:'01:48',rating_avg:'2.5',rating_count:'11',view_count:'965',description:'video.news.sky.com BP has said it won\'t know until the end of the week if a new plan to end a huge oil spill in the Gulf of Mexico works. President Obama called the failed efforts to plug the leak \'enraging\' and \'heartbreaking\', as the ruptured well became the worst environmental disaster in US history Sky\'s US Correspondent Greg Milam reports.',tags:'oil, slick, spill, bp, obama, president, usa, beach, disaster, sky, news',thumbnail_url:'http://img.youtube.com/vi/6K5BHsjj7p8/default.jpg',upload_time:'1275233140',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/6K5BHsjj7p8/related?v=2',ord:'34',isprivate:'',t:'v'}, {id:'rlqL_1xHhKw',title:'Balloon Man: The Epic Journey',author:'skynews',real_length:'602',length_seconds:'10:02',rating_avg:'5',rating_count:'26',view_count:'3442',description:'video.news.sky.com American man has arrived in France after crossing the Channel - carried only by helium balloons. Sky\'s Enda Brady has this special report.',tags:'balloon, man, helium, channel, france, england, american, pilot, sky, news',thumbnail_url:'http://img.youtube.com/vi/rlqL_1xHhKw/default.jpg',upload_time:'1275147855',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/rlqL_1xHhKw/related?v=2',ord:'35',isprivate:'',t:'v'}, {id:'Re_uQt89Uss',title:'Ipad: To Buy Or Not To Buy?',author:'skynews',real_length:'556',length_seconds:'09:16',rating_avg:'3.9',rating_count:'11',view_count:'1099',description:'video.news.sky.com 24 hours on.. are those new Ipad owners going to be happy with their latest purchase.. or a bit frustrated? Does the Ipad live up to the hype. We speak now to Tom Dunmore of Stuff magazine who is in Central London and also with us is technology journalist Adrian Mars.',tags:'ipad, apple, iphone, microsoft, steve, buys, sky, news',thumbnail_url:'http://img.youtube.com/vi/Re_uQt89Uss/default.jpg',upload_time:'1275147067',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Re_uQt89Uss/related?v=2',ord:'36',isprivate:'',t:'v'}, {id:'sDrJTO151bY',title:'Pandemonium As i-pad Hits UK Stores',author:'skynews',real_length:'150',length_seconds:'02:30',rating_avg:'3.9',rating_count:'11',view_count:'569',description:'Thousands queue for new gadget',tags:'i-pad, gadget, apple, i-phone, UK, shops, queues, shoppers',thumbnail_url:'http://img.youtube.com/vi/sDrJTO151bY/default.jpg',upload_time:'1275078587',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/sDrJTO151bY/responses?v=2',ord:'37',isprivate:'',t:'v'}, {id:'zRAl53VEoKA',title:'Queen\'s Speech Sets Out \'Fairness\' Agenda',author:'skynews',real_length:'250',length_seconds:'04:10',rating_avg:'3.9',rating_count:'7',view_count:'1309',description:'news.sky.com Parliamentary reform, more freedom for teachers and a "strong and fair society" has been promised by the Government in the Queen\'s speech. Her Majesty has set out the new Coalition Government\'s plans for the next 18 months at the State Opening of Parliament. Sky\'s Political Correspondent Joey Jones reports.',tags:'Sky, News, Coalition, government, reform, Queen\'s, Speech, Parliament, David, Cameron, Nick, Clegg',thumbnail_url:'http://img.youtube.com/vi/zRAl53VEoKA/default.jpg',upload_time:'1274813304',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/zRAl53VEoKA/responses?v=2',ord:'38',isprivate:'',t:'v'}, {id:'6QGA5P08Fj4',title:'Dozens killed in Thai clashes',author:'skynews',real_length:'143',length_seconds:'02:23',rating_avg:'4.1',rating_count:'9',view_count:'11487',description:'video.news.sky.com Thailand\'s Prime Minister has said he won\'t give in to the red shirt anti-government protestors. 22 people have been killed in the latest violence and a medical rescue worker has reportedly been shot as he went to try and help an injured protestor. Sky\'s Ashish Joshi spent the day in central Bangkok.',tags:'Thailand, Death, Toll, Dead, Killed, Clashes, Violence, Demonstrators, Protests, Battles, Bangkok, Red, Shirt, Protestor, Rescue, Shot, Protester, Sky, News, Ashish, Joshi, Clash, Army',thumbnail_url:'http://img.youtube.com/vi/6QGA5P08Fj4/default.jpg',upload_time:'1273935585',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/6QGA5P08Fj4/related?v=2',ord:'39',isprivate:'',t:'v'}, {id:'R52Rpa_vG2A',title:'Iceland\'s Volcanic Ash Cloud Threatens To Shut Air Space',author:'skynews',real_length:'172',length_seconds:'02:52',rating_avg:'3',rating_count:'2',view_count:'1126',description:'video.news.sky.com UK airspace could be closed from tomorrow until Tuesday because of continuing ash clouds from Iceland. The Department for Transport says the disruption could affect some of Britain\'s busiest airports in the South East.',tags:'Iceland, Volcanic, Volcano, Ash, Cloud, Threat, Shut, Air, Space, UK, Closed, Department, for, Transport, Disruption, Britain, Airports, Sky, News',thumbnail_url:'http://img.youtube.com/vi/R52Rpa_vG2A/default.jpg',upload_time:'1273935500',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/R52Rpa_vG2A/related?v=2',ord:'40',isprivate:'',t:'v'}, {id:'Q92v3uTUuA0',title:'Farage Leaves Hospital After Crash',author:'skynews',real_length:'106',length_seconds:'01:46',rating_avg:'5',rating_count:'14',view_count:'2732',description:'The former leader of UKIP has been released from hospital two days after he was injured in a light aircraft crash. Nigel Farage told Sky News he\'s lucky to be alive. Sky\'s Mark White reports.',tags:'Nigel, Farage, Sky, News, UKIP, Mark, White, plane, crash, aircraft, hospital, released, election, injured',thumbnail_url:'http://img.youtube.com/vi/Q92v3uTUuA0/default.jpg',upload_time:'1273416162',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Q92v3uTUuA0/responses?v=2',ord:'41',isprivate:'',t:'v'}, {id:'8CjXtwqierg',title:'What Do Voters Make Of The Political Uncertainty?',author:'skynews',real_length:'59',length_seconds:'00:59',rating_avg:'3',rating_count:'8',view_count:'860',description:'It could be days until we know who is Britain\'s next Prime Minister with Westminister consumed by political horse-trading. So what do voters make of the uncertainty? Alistair Bunkall has been meeting some.',tags:'Sky, News, Alistair, Bunkall, Hung, parliament, Nick, Clegg, David, Cameron, Gordon, Brown, Voters, Political, Uncertainty',thumbnail_url:'http://img.youtube.com/vi/8CjXtwqierg/default.jpg',upload_time:'1273335217',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/8CjXtwqierg/related?v=2',ord:'42',isprivate:'',t:'v'}, {id:'w65v8xucT2k',title:'Tories Seek Lib Dem Pact - Cameron in Talks With Clegg',author:'skynews',real_length:'216',length_seconds:'03:36',rating_avg:'2.5',rating_count:'8',view_count:'979',description:'video.news.sky.com The tussle for power is underway after Britain\'s first hung parliament in almost 40 years. David Cameron has responded to Nick Clegg\'s call to try and form a Government by saying he\'s ready to make a comprehensive offer to the Liberal Democrats. Sky News has more.',tags:'David, Cameron, Conservative, Party, Tories, Nick, Clegg, Lib, Dems, Liberal, Democrats, Gordon, Brown, PM, Prime, Minister, Labour, Hung, Parliament, Election, Results, Sky, News',thumbnail_url:'http://img.youtube.com/vi/w65v8xucT2k/default.jpg',upload_time:'1273257598',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/w65v8xucT2k/related?v=2',ord:'43',isprivate:'',t:'v'}, {id:'Qvgoz2sZOZ0',title:'Investigation After Voters Were Turned Away',author:'skynews',real_length:'1',length_seconds:'00:01',rating_avg:'1.3',rating_count:'12',view_count:'365',description:'video.news.sky.com The Electoral Commission has launched an investigation after hundreds of people across the country were turned away from polling stations. Voters in areas including London, Sheffield and Manchester tried in vain to cast their ballots before the 10pm deadline. Sky\'s Tom Parmenter reports.',tags:'Election, Voting, Voters, Vote, Ballots, Polls, Polling, Station, Electoral, Commission, Investigation, London, Sheffield, Manchester, Sky, News, England, Britain, UK, Inquiry',thumbnail_url:'http://img.youtube.com/vi/Qvgoz2sZOZ0/default.jpg',upload_time:'1273257412',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Qvgoz2sZOZ0/related?v=2',ord:'44',isprivate:'',t:'v'}, {id:'06_n7YxnoCE',title:'UKIP\'s Nigel Farage in Plane Crash',author:'skynews',real_length:'116',length_seconds:'01:56',rating_avg:'5',rating_count:'11',view_count:'3671',description:'video.news.sky.com Former UKIP leader Nigel Farage says hes lucky to be alive, after he was pulled from the wreckage of a plane which crashed as he was campaigning. Both Mr Farage and the pilot are being kept in hospital overnight. Skys Lisa Dowd reports.',tags:'Nigel, Farage, UKIP, Leader, Plane, Light, Aeroplane, Aircraft, Crash, Lucky, Alive, Wreckage, Crashed, Election, Campaigning, MEP, Injured, Banner, Party, Nosedive, Tail, Tangled, Northamptonshire, Britain, England, Pilot, Hospital, Sky, News',thumbnail_url:'http://img.youtube.com/vi/06_n7YxnoCE/default.jpg',upload_time:'1273176772',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/06_n7YxnoCE/related?v=2',ord:'45',isprivate:'',t:'v'}, {id:'hStSv5Wdn74',title:'Katie and Tom\'s Song and Dance for Charity',author:'skynews',real_length:'36',length_seconds:'00:36',rating_avg:'3.7',rating_count:'18',view_count:'80061',description:'video.news.sky.com Since they got together Tom Cruise and Katie Holmes have been happy to publicly declare their love for each other - and they\'ve been at it again. This time they decided to perform a song and dance number at a Hollywood charity dinner.',tags:'Tom, Cruise, Katie, Holmes, Publicly, Declare, Love, Perform, Song, Dance, Hollywood, Charity, Dinner, Whatever, Lola, Wants, Audience, Gala, 20th, Century, Fox, Stage, Serenade',thumbnail_url:'http://img.youtube.com/vi/hStSv5Wdn74/default.jpg',upload_time:'1273175651',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/hStSv5Wdn74/related?v=2',ord:'46',isprivate:'',t:'v'}, {id:'AQnqXuxG1vM',title:'Protester Jumps On Stage With Gordon Brown',author:'skynews',real_length:'37',length_seconds:'00:37',rating_avg:'4.3',rating_count:'11',view_count:'2069',description:'video.news.sky.com An anti-nuclear protestor got within a foot of Gordon Brown, when he invaded the stage at an event in central London. It comes as all three party leaders step up their campaigning ahead of Thursdays election.',tags:'Gordon, Brown, Protestor, Protester, Invade, Jumps, Jumped, Stage, Heckled, Heckler, Prime, Minister, PM, Anti, Nuclear, Election, London, Campaigning, Speech, Labour, Party',thumbnail_url:'http://img.youtube.com/vi/AQnqXuxG1vM/default.jpg',upload_time:'1272918666',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/AQnqXuxG1vM/related?v=2',ord:'47',isprivate:'',t:'v'}, {id:'JA2M_la4OHo',title:'Mumbai Massacre Gunman Found Guilty',author:'skynews',real_length:'163',length_seconds:'02:43',rating_avg:'3.5',rating_count:'8',view_count:'1691',description:'video.news.sky.com The only surviving gunman from the Mumbai terror attacks has been found guilty of murder and waging war against India. Mohammed Ajmal Kasab was one of ten Pakistani gunmen who killed 166 people during a three day rampage in 2008. Sky\'s Asia correspondent Alex Crawford reports.',tags:'Mumbai, India, Massacre, Terror, Attacks, Gunman, Gun, Attack, Guilty, Murder, War, Mohammed, Ajmal, Kasab, Pakistani, Pakistan, Killed, Dead, 166, People, Victims, Rampage, 2008, Sky, News, Alex, Crawford, Shoot, Shooting',thumbnail_url:'http://img.youtube.com/vi/JA2M_la4OHo/default.jpg',upload_time:'1272918407',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/JA2M_la4OHo/related?v=2',ord:'48',isprivate:'',t:'v'}, {id:'Sh2h84JUN2c',title:'Madeleine McCann: New Video 3 Years On',author:'skynews',real_length:'105',length_seconds:'01:45',rating_avg:'3',rating_count:'12',view_count:'4092',description:'The parents of Madeleine McCann have released a new video of their missing daughter, to mark the third year since she disappeared. Kate and Gerry McCann have included a new photo in the video, which they hope will remind people of their continuing search for Madeleine. It shows their on-going attempts to find the toddler, including the early days after she went missing. The couple can also be seen taking part in poster and email campaigns.',tags:'maddie, madeleine, mccann, portugal, praiz, de, luz, sky, news',thumbnail_url:'http://img.youtube.com/vi/Sh2h84JUN2c/default.jpg',upload_time:'1272813443',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Sh2h84JUN2c/related?v=2',ord:'49',isprivate:'',t:'v'}]},
initialize: function () {this.createP()}

};
var IDTVLBDataSource0c4d951488IF = function () {IDTVLBDataSource0c4d951488.initialize.apply(IDTVLBDataSource0c4d951488, []);};
if (document.getElementById('IDTVP_0c4d951488'))
	IDTVLBDataSource0c4d951488IF ();
else if (window.addEventListener)
	window.addEventListener("load", IDTVLBDataSource0c4d951488IF, true);
else
	window.attachEvent("onload", IDTVLBDataSource0c4d951488IF);