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(IDTVVWP) == "undefined") {
	IDTVVWP = function () {this.initialize.apply(this, arguments);};
	IDTVVWP.prototype = {
		frame: null,
		initialize: function (ds) {

			this.ds = ds;
			this.element = document.getElementById('IDTVP_' + this.ds.id);
			if (!this.element && document.getElementsByClassName)
				try {
					this.element = document.getElementsByClassName ('idtv_81988d1490')[0];
				} catch(e) {}
			if (!this.element) { alert ('The iDesktop.tv video wall is not not embedded properly!'); return;}
			this.element.innerHTML = '<div class="idtv_' + this.ds.id + '"><div class="idtv_inres"></div><div class="idtv_bb">' +
				'<div class="idtv_btn_prev"></div><div class="idtv_btn_next"></div><div class="idtv_bb_pages"></div></div></div>';
			var divs = this.element.getElementsByTagName('div');
			this.elementout = divs[0];
			this.elementin = divs[1];
			this.btn_prev = divs[3];
			this.btn_next = divs[4];
			this.pagers_area = divs[5];
			if (this.ds.data.error) {
				this.elementin.innerHTML = '<div style="text-align:center">' + this.ds.data.error + '</div>';
			} else {
				this.btn_prev.onclick = this.prevP.bindAsEventListener(this);
				this.btn_next.onclick = this.nextP.bindAsEventListener(this);
				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;
				}
				this.results = new Array();
				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 % this.ds.cols + Math.floor(i / this.ds.cols)) % 2) nr.className += ' alt';
					jsonArr[i].title_esc = (jsonArr[i].title ? jsonArr[i].title.replace(/"/g, "&quot;") : '');  // comment only to fix code coloring "
					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)
						nr.innerHTML += '<div class="private_mark">PRIVATE</div>';
					nr.innerHTML += t;
					this.elementin.appendChild(nr);
					nr.style.display = 'none';
					this.results.push(nr);
					nr.onclick = this.onresclick.bindAsEventListener(this, i);
				}
				this.showRes();
			}
			var f = document.createElement('iframe');
			f.src = "http://www.idesktop.tv/embed/81988d1490/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);
				}
				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); },
		showRes: function () {
			if (this.results.length == 0)
				this.pagers_area.innerHTML = 'no results';
			else {
				var s = this.page * this.ds.pp, e = Math.min (s + this.ds.pp, this.results.length) - 1;
				for (var i = 0, n = this.results.length; i < n; i ++)
					this.results[i].style.display =  (i < s || i > e ? 'none' : 'block');
				this.pagers_area.innerHTML = (s+1) + ' - ' + (e+1) + ' (' + this.results.length + ')';
			}
		},
		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 IDTVLBDataSource81988d1490 = {
	id: '81988d1490', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 396, height: 428, pp: 12,
	rows: 4, cols: 3,
	plw: 600, plh: 500,
	createP: function () {
		if (this.reverse_playlist) this.data.results = this.data.results.reverse();
		this.p = new IDTVVWP(this);
	},
	plpl: 'center',
	only_public:true,mark_private:true,
	thumb_show_title : false, thumb_show_author : false,
	thumb_show_rating : false, thumb_show_views: false,
	thumb_show_length : false, thumb_show_description : false,
	thumb_show_labels : false,
	thumbnail_text: 'O',
	reverse_playlist: false,
	pldelta: 0,
		data: {results: [{id:'F3OCd8mAxhQ',title:'Eduslum Mainstreaming Slum Children to Formal Education',author:'naisheel1',real_length:'250',length_seconds:'04:10',rating_avg:'4.7',rating_count:'3',view_count:'323',description:'Eduslum is an initiative of NSS IIT Roorkee to teach the children found begging in the Civil Lines Market of Roorkee. They are inmates of the slums of Teliwala village, 7 kms from IIT Roorkee. NSS volunteers have been visiting these slums daily from 14th February, 2009 to teach these children moral education as well as letters. They have less manners and the job of teaching them is not easy... For more details please visit: www.nssatiitr.blogspot.com For touching stories related to the ...',tags:'NSS, IIT, Roorkee, Eduslum, National, Service, Scheme, Indian, Institute, of, Technology, beggar, poor, society, teliwala, village, Mainstreaming, Slum, children, formal, education, B.L.Chawla, Kalpana, Chawla',thumbnail_url:'http://img.youtube.com/vi/F3OCd8mAxhQ/default.jpg',upload_time:'1244398718',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/F3OCd8mAxhQ/responses?v=2',isprivate:'',t:'v'},{id:'ubh6BCsuCuE',title:'Free Examination help updates 2009 IIT JEE AIEEE ICSE CBSE ISC 2009 www.aieeeindia.co.cc',author:'indibuz',real_length:'204',length_seconds:'03:24',rating_avg:'0',rating_count:'',view_count:'731',description:'visit - www.aieeeindia.co.cc for free help.For students Giving examinatipns like IIT JEE 2009 AIEEE 2009 ICSE CBSE ISC.Free help forum. http Complete AIEEE IIT JEE BITS 2009 Free help Forum . Get free help about these exam free book download. iit jee,aieee,bits,bitsat, cbse, aipmt, goiit, cbse.nic.in,india education,free iit help,forum,cse,icse,hc verma',tags:'iit jee, aieee, bits, bitsat, cbse, aipmt, goiit, cbse.nic.in, india education, free iit help, forum, cse, icse, h c verma2009, iit jee 2009',thumbnail_url:'http://img.youtube.com/vi/ubh6BCsuCuE/default.jpg',upload_time:'1237392428',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/ubh6BCsuCuE/responses?v=2',isprivate:'',t:'v'},{id:'LIAuf0DAsLc',title:'Mad Gregs - Safe in Sound',author:'MadGregsSafeInSound',real_length:'337',length_seconds:'05:37',rating_avg:'4.6',rating_count:'541',view_count:'108038',description:'Mad Gregs - Safe In Sound <br /> Album: Big Nuns available on iTunes!<br /> <br /> Directed by David Nordstrom<br /> Photography by Michael Totten<br /> Colorist: Loren White<br /> <br /> myspace.com/madgregs<br /> madgregs.com/',tags:'mad, gregs, safe, in, sound, david, nordstrom, big, nuns, loren, white, totten',thumbnail_url:'http://img.youtube.com/vi/LIAuf0DAsLc/default.jpg',upload_time:'1232752045',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/LIAuf0DAsLc/responses?v=2',isprivate:'',t:'v'},{id:'MDkP2WaEYFE',title:'Happy 4th of July!',author:'FlippyCat',real_length:'98',length_seconds:'01:38',rating_avg:'4.6',rating_count:'2499',view_count:'259511',description:'For my American friends and viewers, happy 4th of July!<br /> <br /> Don\'t forget to rate it!<br /> <br /> Share this on the 4th:<br /> http://tinyurl.com/HappyFourthofJuly',tags:'happy, independence, day, fourth, 4th, of, july, dominos, cat, flippycat, red, white, blue, stripes, flag, waving, usa, us, united, stated, America, falling, collapse, time, lapse, timelapse, setup, fail, celebrate, holiday, long, weekend, fireworks, summer, event, entertainment, video, backward, reverse, slow, motion, effect, pieces, stones, blocks, plastic, tar, spangled, banner, national, anthem',thumbnail_url:'http://img.youtube.com/vi/MDkP2WaEYFE/default.jpg',upload_time:'1246658978',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/MDkP2WaEYFE/responses?v=2',isprivate:'',t:'v'},{id:'KJIz8BgRQc0',title:'Diversity - Final - Britains Got Talent 2009 (HQ)',author:'BritainsSoTalented',real_length:'325',length_seconds:'05:25',rating_avg:'4.9',rating_count:'17367',view_count:'1313154',description:'Diversity perform on the final of Britains Got Talent 2009.',tags:'Britains, Got, Talent, Final, 2009, Simon, Cowell, Amanda, Holden, Piers, Morgan, BGT, Britainssotalented, yt:stretch=16:9, yt:quality=high, Susan, Boyle, Shaheen, Jafargholi, Hollie, Steele, Jamie, Pugh, Shaun, Smith, Aidan, Davis, Sue, Son, Diversity, Flawless, Stavros, Flatly, Ant, Dec, Natalie, Okri, Gregg, Pritchard, Mr, Methane, Julian, Good, Evans, Fred, Bowers, DJ, Harmony, The, Barrow, Boys, MD, Showgroup, Sugar, Free',thumbnail_url:'http://img.youtube.com/vi/KJIz8BgRQc0/default.jpg',upload_time:'1243713555',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/KJIz8BgRQc0/responses?v=2',isprivate:'',t:'v'},{id:'dUQ1LRGcVgs',title:'Steve Angello & Laidback Luke Ft Robin S - Show Me Love (Out NOW)',author:'datarecordsuk',real_length:'199',length_seconds:'03:19',rating_avg:'4.697966',rating_count:'2311',view_count:'1402947',description:'Download this track here: itunes.apple.com Steve Angello &amp; Laidback Luke Ft Robin S - Show Me Love is out NOW. Download the official Steve Angello &amp; Laidback Luke Ft Robin S Show Me Love Realtone for just &Acirc;&pound;1.50! Simply text GET LOVE to 80988. Exclusive offer usual price &Acirc;&pound;3! * This is not a subscription service. Standard network charges apply for your outgoing message, return message is free of charge. Allow 24 hours for delivery of return message. Text billed at &Acirc;&pound;1.50 plus SMS cost ...',tags:'show, me, love, steve, angello, laidback, luke, robin',thumbnail_url:'http://img.youtube.com/vi/dUQ1LRGcVgs/default.jpg',upload_time:'1235123815',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/dUQ1LRGcVgs/responses?v=2',isprivate:'',t:'v'},{id:'PWfPLDwxu6c',title:'Disaster threat to Mumbai - BBC',author:'BBCWorldwide',real_length:'250',length_seconds:'04:10',rating_avg:'4.431818',rating_count:'44',view_count:'36278',description:'1000 people drowned in the world\'s most densely populated city, Mumbai, and the explanation was global warming and excess building. It wasn\'t until disaster struck that the citizens of Mumbai realised the importance of the Mangroves.Watch more of 5 Disasters Waiting to Happen from BBC Worldwide here:http://www.youtube.com/view_play_list?p=C4D43F960EFF88E0',tags:'BBC, travel, Mumbai, monsoon, mangrove, India, highest, rainfall, weather, rain, environment., Forests, marsh, deforestation, swamps',thumbnail_url:'http://i.ytimg.com/vi/PWfPLDwxu6c/2.jpg',upload_time:'1186057107',comment_count:'0',url:'http://gdata.youtube.com/feeds/videos/PWfPLDwxu6c/responses'},{id:'RKE7enkhZyo',title:'Hinduism- 1',author:'themostmystfellow',real_length:'544',length_seconds:'09:04',rating_avg:'4.4126983',rating_count:'315',view_count:'117675',description:'The first episode of a 5 part documentary on the history of Hinduism. P.S.: Do not take all facts/opinions mentioned in the documentary at absolute truth value since the presentation is from a western perspective.',tags:'hinduism, hindu, sanatana, sanatan, dharma, religions, world, india, veda, vedas, krishna, gandhi',thumbnail_url:'http://i.ytimg.com/vi/RKE7enkhZyo/2.jpg',upload_time:'1171621333',comment_count:'0',url:'http://gdata.youtube.com/feeds/videos/RKE7enkhZyo/responses'},{id:'jXqRn1RTE3Y',title:'Blackberry Ad UK edition 2',author:'dalto12593',real_length:'34',length_seconds:'00:34',rating_avg:'5.0',rating_count:'4',view_count:'4527',description:'another blackberry commercial uk edition.',tags:'black, berry, commercial, ad, europe, uk, england',thumbnail_url:'http://i.ytimg.com/vi/jXqRn1RTE3Y/2.jpg',upload_time:'1215411999',comment_count:'0',url:'http://gdata.youtube.com/feeds/videos/jXqRn1RTE3Y/responses'},{id:'uU3eqP-nxu8',title:'INDIA HISTORY  : PART I',author:'typicaldesi',real_length:'594',length_seconds:'09:54',rating_avg:'4.5477943',rating_count:'272',view_count:'104590',description:'THIS IS PART I We made this movie on India\'s History for an annual Diwali function at the university of Tennessee,knoxville. We present here 5000 years of India\'s history in 15 minutes. We have tried to mention almost all important events. Its been a great learning experience.Hope y\'all enjoy it !!!!!!!India Indian Sindhu ancient civilization timeline harappa mohenjodaro freedom History Knoxville manthan Tennessee Bharat ar rahman Indus valley Mahatma Gandhi Bhagat Singh 1947 Maurya Bengali Sanskrit Hindi Vijayanagara',tags:'India, Indian, Sindhu, Civilization, harappa, mohenjodaro, timeline, ancient, History, Knoxville, manthan, Tennessee, Bharat, freedom',thumbnail_url:'http://i.ytimg.com/vi/uU3eqP-nxu8/2.jpg',upload_time:'1146977328',comment_count:'0',url:'http://gdata.youtube.com/feeds/videos/uU3eqP-nxu8/responses'},{id:'ZVK17ThcBa8',title:'INDIAN FREEDOM MOVEMENT : BHAGAT SINGH PART 1',author:'PARAG4UNITY',real_length:'508',length_seconds:'08:28',rating_avg:'4.836735',rating_count:'49',view_count:'35730',description:'Parag Shah of Global Mavericks in his video magazines presents clips of RANG DE BASANTI a production/distribution UTV starring Aamir Khan and many British stage artists. These movie clips depict the Indian Freedom Struggle against British Imperialism through the endevours of one of many India\'s heros "Bhagat Singh" and his band of freedom fighters. UTV had done an excellent job and won the film awards and the International festival in Kalau Lampur Malaysia and had nominations in canes. It was my privalage to witness the awards and meeting people connected with this vast endevour in Mumbai.All persons who undertook this wonderful political movie on Indian history has done a wonderful job. Hats off for the entire team involved with this wonderful motion picture.Parag ShahGlobal Mavericks,Pro India Lobby',tags:'INDIAN, HISTORY, BHAGAT, SINGH, FREEDOM, MOVEMENT, BRITISH, EMPIRE, INDIA, AAMIR, KHAN',thumbnail_url:'http://i.ytimg.com/vi/ZVK17ThcBa8/2.jpg',upload_time:'1189974313',comment_count:'0',url:'http://gdata.youtube.com/feeds/videos/ZVK17ThcBa8/related'},{id:'8i3CcakF71Q',title:'The Obama Deception The Mask Comes Off Part 1',author:'TyredUvBS',real_length:'513',length_seconds:'08:33',rating_avg:'4.63',rating_count:'16',view_count:'2074',description:'Part one barack hussein obama deception leak peek alex jones infowars prisonplanet new world order federal reserve ron paul peter schiff the truth strikes back march 15 2009 ',tags:'truth, strikes, back, obama, deception, leak, peek, alex, jones, infowars, prisonplanet, new, world, order, federal, reserve, ron, paul, peter, schiff, part, one',thumbnail_url:'http://img.youtube.com/vi/8i3CcakF71Q/default.jpg',upload_time:'1236803469',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/8i3CcakF71Q/responses?v=2',isprivate:'',t:'v'},{id:'WqcXybT3UJg',title:'YouTube Poop: Trouble with Tritter',author:'youpoopd',real_length:'318',length_seconds:'05:18',rating_avg:'3.86',rating_count:'7',view_count:'420',description:'Yes, a poop of \u0022Twouble with Twitter.\u0022 I have no life. (not as funny as the original) ',tags:'twouble, twitter, trouble, tritter, youtube, poop, current, tv, parody, satire, the, king, dinner, zelda, cd-i, mario, no, hotel, high, quality, hq, hd, definition, darren, craig, morshu, mmm, mm, mmmm, firin, mah, lazer, laser, lazar, lasar, shoop, da, whoop',thumbnail_url:'http://img.youtube.com/vi/WqcXybT3UJg/default.jpg',upload_time:'1238060332',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/WqcXybT3UJg/responses?v=2',isprivate:'',t:'v'},{id:'klteYv1Uv9A',title:'This is How We Roll in India',author:'shalinahuja',real_length:'51',length_seconds:'00:51',rating_avg:'4.90',rating_count:'2638',view_count:'1509366',description:'This is Unreal!!! On the highways of New Delhi, India',tags:'Amazing, bike, Crazy, delhi, highways, India, Motor, motorcycle, new, Roll, Stunt, unreal',thumbnail_url:'http://img.youtube.com/vi/klteYv1Uv9A/default.jpg',upload_time:'1215510531',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/klteYv1Uv9A/responses?v=2',isprivate:'',t:'v'},{id:'3NuOP4ymJVM',title:'Lindsey Williams on the Alex Jones Show 28/07/08 P4',author:'DJMR2882',real_length:'598',length_seconds:'09:58',rating_avg:'4.81',rating_count:'21',view_count:'4772',description:'Alex welcomes author and radio host Dr. Stanley Monteith and Lindsey Williams, author of The Energy Non-Crisis, to discuss oil prices and inside information they have been given concerning an expected collapse of the U.S. economy. Williams also details disturbing instances of death threats he has received. Bob Chapman of The International Forecaster also makes an appearance.',tags:'Bob, Chapman, East, Infowars, Lindsey, Middle, Monteith, New, Oil, Order, PrisonPlanet, Stanley, Williams, World',thumbnail_url:'http://img.youtube.com/vi/3NuOP4ymJVM/default.jpg',upload_time:'1217284682',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/3NuOP4ymJVM/responses?v=2',isprivate:'',t:'v'},{id:'lXs0drfSG_M',title:'Metallica - I Disappear',author:'scbene',real_length:'269',length_seconds:'04:29',rating_avg:'4.89',rating_count:'428',view_count:'144486',description:'this is me (scbene, upper left), t0ko (drums and bass) and titovincenzo (bottom right) playing I Disappear by Metallica as a 4 way split screen.<br /> <br /> this is our first 4 way collaboration together!!<br /> <br /> if you are not currently subscribed to either of these great musicians please check out their respective channels. i know they would both appreciate your support for their hard work!!<br /> <br /> http://www.youtube.com/t0ko<br /> <br /> http://www.youtube.com/titovincenzo<br /> <br /> we hope to do more of these in the near future together!!! metal on good people!!!<br /> <br /> ----------------------------------------<br /> As of 9/8/2008 this video has received the following honors:<br /> <br /> <br /> #3 - Featured - Australia<br /> #3 - Featured - New Zealand<br /> #9 - Featured<br /> #2 - Featured - Music - Australia<br /> #2 - Featured - Music - New Zealand<br /> #3 - Featured - Music<br /> #99 - Most Responded (Today) - Music',tags:'bass, cover, digitech, disappear, drums, esp, guitar, hetfield, ibanez, metal, metallica, rp250, scbene, t0ko, titovincenzo, ulrich',thumbnail_url:'http://img.youtube.com/vi/lXs0drfSG_M/2.jpg',upload_time:'1198038336',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/lXs0drfSG_M/responses',t:'v'},{id:'-2EJElpFeok',title:'ALEXANDER WANG (RUNWAY REMIX)',author:'NylonMagazineTV',real_length:'118',length_seconds:'01:58',rating_avg:'3.49',rating_count:'77',view_count:'69860',description:'NYLON TV has a front row seat all this Fashion Week - come join us by watching our videos on YouTube, and nylonmag.com',tags:'09, 2009, alexander, fashion, magazine, nylon, nylonmagazine, nylontv, spring, summer, tv, wang, week',thumbnail_url:'http://img.youtube.com/vi/-2EJElpFeok/2.jpg',upload_time:'1220783663',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/-2EJElpFeok/responses',t:'v'},{id:'S5ix0dPxKEU',title:'Disney Princess Beauty',author:'spasgirl',real_length:'160',length_seconds:'02:40',rating_avg:'4.60',rating_count:'328',view_count:'564916',description:'Beautiful Disney Princesses with their very handsome princes.The song used here is called \u0022Once upon a December\u0022 from \u0022Anatasia\u0022',tags:'ariel, aurora, beauty, belle, cinderella, classics, disney, jasmine, mulan, princess, snow, white',thumbnail_url:'http://img.youtube.com/vi/S5ix0dPxKEU/default.jpg',upload_time:'1168666451',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/S5ix0dPxKEU/responses?v=2',isprivate:'',t:'v'},{id:'ra4TUS96AEc',title:'DIsney Princess- If You Can Dream',author:'DisneyPrincessIsrael',real_length:'235',length_seconds:'03:55',rating_avg:'4.88',rating_count:'630',view_count:'246990',description:'The first shared song of disney princesses, in an amazing music video.<br /> In the music video you can see:Snow-White,Cinderella,Aurora,Ariel,Belle,Jasmine,Pocahontas &amp; Mulan- the Disney Princess.<br /> &times;�&times;&copy;&times;�&times;&uml; &times;�&times;&uml;&times;�&times;&copy;&times;�&times;� &times;�&times;�&times;&copy;&times;�&times;&ordf;&times;&pound; &times;&copy;&times;� &times;&nbsp;&times;&iexcl;&times;�&times;�&times;�&times;&ordf; &times;�&times;�&times;&iexcl;&times;&nbsp;&times;� &times;�&times;&sect;&times;�&times;�&times;&curren; &times;�&times;�&times;&iexcl;&times;�&times;&sect;&times;�&times;� &times;�&times;�&times;�&times;�&times;�!!!!<br /> &times;�&times;&sect;&times;�&times;�&times;&curren; &times;&ordf;&times;�&times;�&times;�&times;� &times;�&times;&uml;&times;�&times;�&times;&ordf; &times;�&times;&ordf; :&times;&copy;&times;�&times;�&times;�&times;�,&times;&iexcl;&times;�&times;&nbsp;&times;�&times;&uml;&times;�&times;�,&times;�&times;�&times;&uml;&times;�&times;&uml;&times;�,&times;�&times;&uml;&times;�&times;�&times;�,&times;�&times;�,&times;�&times;&iexcl;&times;�&times;�&times;�,&times;&curren;&times;�&times;&sect;&times;�&times;�&times;&nbsp;&times;�&times;&iexcl; &times;�&times;�&times;�&times;�&times;�&times;�-&times;&nbsp;&times;&iexcl;&times;�&times;�&times;�&times;&ordf; &times;�&times;�&times;&iexcl;&times;&nbsp;&times;�.<br /> <br /> This is an official Disney Princess music video. We didn\'t make this video, just upload.',tags:'ariel, aurora, belle, can, cinderella, disney, dream, if, jasmine, mulan, pocahontas, princess, snow, white, you, דיסני, נסיכות',thumbnail_url:'http://img.youtube.com/vi/ra4TUS96AEc/default.jpg',upload_time:'1162730497',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/ra4TUS96AEc/responses?v=2',isprivate:'',t:'v'},{id:'BBqxVETQgcc',title:'Super Brain - Part 1 of 8',author:'SuperHelthy',real_length:'616',length_seconds:'10:16',rating_avg:'3.25',rating_count:'8',view_count:'20000',description:'The 10 natural steps to improving mental health and brain function: Too many people are resorting to synthetic psychoactive drugs to try and improve their brain and mental function. Prescriptions for Ritalin and Dexamphetamine are on the rise, Antidepressant sales are up, and the latest mix of street drugs has never been more accessible and affordable. Children who don\'t fit into the behavioural box at school are being put on stimulants in the hope of a quick fix, teens and adults struggling against the battles of life are being offered emotional inhibitors as a first resort, and many of the newer social drugs are uppers with tragic risk attached.In contrast to this synthetic culture which is prevailing, there are natural strategies that exist which can help to nourish and stimulate the brain to produce its\' own internal "feel good -- work well" chemistry. Dr Nick Hodgson, Chiropractor and Wellness Coach will be discussing the 10 natural steps to maximising brain health and mental function, which will include discussion of improving issues like ADHD, Autism, Depression and Anxiety.Buy this program at http://www.torquerelease.com.au/Healthy-Brain-Secrets.html',tags:'Health, Brain, mental, chiropractic, auriculotherapy, adhd, add, depression, anxiety, nervous, system',thumbnail_url:'http://i.ytimg.com/vi/BBqxVETQgcc/2.jpg',upload_time:'1219637757',comment_count:'0',url:'http://gdata.youtube.com/feeds/videos/BBqxVETQgcc/responses'},{id:'fwTYLgAtqRM',title:'Show Off Gets Owned',author:'BamCky5',real_length:'56',length_seconds:'00:56',rating_avg:'5.00',rating_count:'5',view_count:'347',description:'I came upon this video my friend emailed me of some show off doing hand stands, flips and kicks to get the crowd hyped up (while the other guy stands UN-phased by the lil-ninja). Lil-ninja just happened to flip right into the most embarrassing moment of his night. Or life...',tags:'boobs, club, embarrasing, fight, fightclub, flip, flips, funny, Gets, knock, lol, ninja, Off, out, Owned, peepee, poopoo, porn, pwnd, Show',thumbnail_url:'http://img.youtube.com/vi/fwTYLgAtqRM/2.jpg',upload_time:'1219355708',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/fwTYLgAtqRM/responses'},{id:'00PPPt7EJqo',title:'Oil-on-Water Calming Effect',author:'psidot',real_length:'107',length_seconds:'01:47',rating_avg:'4.22',rating_count:'1372',view_count:'312817',description:'It has been known since ancient times that when a small amount of oil is poured into water it is able to significantly reduce or calm wind-induced waves at the surface. This stilling of the waves is referred to as the Oil-on-Water Calming Effect and is the origin behind the well-known phrase \u0022to pour oil on troubled waters.\u0022',tags:'calming, demonstrations, effect, experiments, oil, Oil-on-Water, physics, pour, surface, tension, troubled, waters',thumbnail_url:'http://img.youtube.com/vi/00PPPt7EJqo/2.jpg',upload_time:'1185030301',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/00PPPt7EJqo/responses'},{id:'EOSDNl33Zy8',title:'Supreme Soul v. Jabbawockeez Battle (Part I)',author:'peterwilkins19',real_length:'405',length_seconds:'06:45',rating_avg:'4.74',rating_count:'200',view_count:'288635',description:'Please subscribe!<br /> Here is the infamous battle Shane Sparks referenced on America\'s Best Dance Crew 2.<br /> <br /> This was during Body Rock 2006 in San Diego, CA<br /> <br /> Soul Sector (now Supreme Soul on the left) vs So Cal Allstars (Phil, Kevin, Gary Kendall RIP from Jabbawockeez and Ronnie from Supercr3w - who is on the show now)',tags:'A.S.I.I.D., America\'s, Battle, Best, Boogie, Bots, Cr3w, Crew, Dance, Fanny, Jabbawockeez, Pak, Soul, Super, Supreme, Xtreme',thumbnail_url:'http://img.youtube.com/vi/EOSDNl33Zy8/2.jpg',upload_time:'1214817180',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/EOSDNl33Zy8/responses'},{id:'_Kn6SF9Oq0s',title:'JabbaWockeeZ America\'s Best Dance Crew Audition Special',author:'JCDawghound',real_length:'211',length_seconds:'03:31',rating_avg:'4.92',rating_count:'197',view_count:'89998',description:'Subscribe please! Will upload more!<br /> <br /> ABDC. Randy Jackson Presents America\'s Best Dance Crew<br /> <br /> Episode Check And Song List:<br /> Week 0: We Came Here to Party  - Tony Yayo (Mix)<br /> Week 1: Apologize -- One Republic<br /> Week 2: Ice Box -- Omarion<br /> Week 3: Lean Wit It Rock Wit It -- Dem Franchise Boys<br /> Week 4: Ayo Technology -- Justin Timberlake<br /> Week 5: PYT -- Michael Jackon<br /> Week 6: All That Jazz -- (MasterMix)<br /> Week 7: Funkytown -- Lipps Inc * It\'s Like That - Run DMC * It\'s Just Begun - Jimmy Castor * Push It - Salt-n-Pepa * Bye Bye Bye -- NSYNC * Get Buck in Here by DJ Felli Fel *<br /> Week 7 : The Red Pill -- (MasterMix)<br /> <br /> Challenge: Qualifying Round<br /> <br /> Copyright: I do not construct any of the songs nor own or have related business with \u0022Randy Jackson Presents America\'s Best Dance Crew\u0022.  I do not have anything to do with JabbaWockeeZ. All rights are not reserved.',tags:'ABDC, Americas, Audition, BBoy, Best, Came, Crew, Dance, Gloves, Here, Jabba, JabbaWockeeZ, Masks, Party, Rainen, Special, To, We, WockeeZ',thumbnail_url:'http://img.youtube.com/vi/_Kn6SF9Oq0s/2.jpg',upload_time:'1216239827',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/_Kn6SF9Oq0s/responses'},{id:'-Q2liEHVhgE',title:'Jabbawockeez on Pepsi Smash',author:'wassup8845',real_length:'135',length_seconds:'02:15',rating_avg:'4.86',rating_count:'277',view_count:'105100',description:'Jabbawockeez perform on Pepsi Smash<br /> <br /> 9 of the 10 current members perform here. (I\'m not sure who the missing Jabba is, I think it\'s Rynan, but not sure) <br /> All Crew Members:<br /> Rynan \u0022Kid Rainen\u0022 Paguio <br /> Chris \u0022Cristyles\u0022 Gatdula<br /> Kevin \u0022Keibee\u0022 Brewer <br /> Joe \u0022Punky\u0022 Larot <br /> Randy \u0022DJ Wish One\u0022 Bernal <br /> Ben \u0022B-Tek\u0022 Chung <br /> Jeff \u0022Phi\u0022 Nguyen <br /> Phil \u0022Swaggerboy\u0022 Tayag <br /> Eddie \u0022Eddie Styles\u0022 Gutierrez <br /> Saso \u0022Saso Fresh\u0022 Jimenez',tags:'ben, brewer, chris, chung, gatudula, jabbawockeez, joe, kaba, kevin, larot, modern, nguyen, paguio, phi, phil, randy, rynan, tayag',thumbnail_url:'http://img.youtube.com/vi/-Q2liEHVhgE/2.jpg',upload_time:'1217307776',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/-Q2liEHVhgE/responses'},{id:'TyfWJg8-w7E',title:'Act Like a Christian (Lean Like a Cholo Christian version)',author:'thepastormike',real_length:'197',length_seconds:'03:17',rating_avg:'3.65',rating_count:'1564',view_count:'198510',description:'LYRICS:   All my homies, all up in the church, let me teach you how you\'re supposed to act (like a Christian) You see when you ask the Lord Jesus Christ into your heart then there\'s a different wat that you\'re supposed to live(Like a Christian)  Elbows out, hands up high  All up in the church, we on time, lookin\' for a few people for game time I need a couple big boys, so we can win; loser at a game of spew, man that\'s a sin! O.k. I like you, I like you but I don\'t like him. We play some crazy games on Wednesday night, then on Thursday morning we get ready to go back to the high school. That\'s where we can live a holy week;  will we act like a Christian, like a Jesus freak? Or will we hide who we really are and be ashamed of the savior who gave us all like this, and like that nailed to a cross while all the guards spat on His face and made fun of Him, treating Him real nasty like He was a Hobo  Elbows out, hands up high  I\'m saved, I behave differently \'cause God expects of me a reborn life Jesus Christ promised an abundant life. Tells me how to live now that I\'m clean, Jesus\' blood cleansed if ya know what I mean! I\'m a new creation, I have got salvation, look into my life, see my reorganization.  I used to do that dance, but no more; now I go to church and I\'m servin\' the Lord.  Just like that? yup like that! I\'m nothin\' but a sinner tryin\' to chase the Lord.  Livin like a Christian I will never be bored.  Tryinn\' not to sin, go to church?  Yea I can live like that.  Now God wants me to spend time with Him eternally, like a Christian!',tags:'aka, cholo, christian, down, kilo, lean, like, mike, ministry, parody, pastor, rap, thepastormike, youth',thumbnail_url:'http://img.youtube.com/vi/TyfWJg8-w7E/2.jpg',upload_time:'1213061289',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/TyfWJg8-w7E/responses'},{author:'AnnimalLover',id:'oiGKWoJi5qM',title:'Christian The Lion - Reunited - From \u0022The View\u0022',length_seconds:'02:52',rating_avg:'4.91',rating_count:'1283',description:'I couldn\'t find this video with the same music anywhere -- so I captured it from July 21st \u0022The View\u0022... I think this music makes is soooo much better!  Thanks ABC!  It makes me happy to see something POSITIVE ... even if it\'s an oldie -- it\'s still heartwarming.  Enjoy!  Here\'s a message from Tad -- the guy who originally made this video:  To see the whole amazing story, buy the full dvd at http://www.bornfree.org.uk/shop/acata... and help The Born Free Foundation save more wildlife.  FROM JULY 28TH TO AUGUST 1ST, VOTE FOR THE BORN FREE FOUNDATION TO BECOME CHARITY OF THE WEEK AT http://www.optimistworld.com/Charitie...',view_count:'1412816',upload_time:'1216658720',comment_count:'927',tags:' Christian Lion Africa Reunited Harrods The View Today Show John Ace reintroduced Remember',url:'http://www.youtube.com/?v=oiGKWoJi5qM',thumbnail_url:'http://i.ytimg.com/vi/oiGKWoJi5qM/default.jpg',coordinates:'21.94304553343818 ,-81.9140625',embed_status:'ok',allow_ratings:'yes',real_length:'172'},{id:'5NhfLP-FwpY',title:'Peter Kingsley Complete Interview Part 1',author:'globaloneness',real_length:'600',length_seconds:'10:00',rating_avg:'5.00',rating_count:'10',view_count:'377',description:'Groundbreaking scholar of pre-Socratic philosophy Peter Kingsley emphasizes the sacred role of Western civilization in global oneness, drawing from his personal experiences with Parmenides and Empedocles: foundational figures of Western civilization whose mystical dimensions have been forgotten or ignored.  Peter maintains that to approach oneness authentically, Western civilization must rediscover its own sacred origins and purpose, and asks, how can Western culture participate in the harmony of oneness if it has forgotten its own note? For more, check out www.globalonenessproject.org',tags:'Civilization, Culture, Empedocles, Kingsley, Oneness, Parmenides, Peter, Philosophy, Spirituality, Sufism, Western',thumbnail_url:'http://img.youtube.com/vi/5NhfLP-FwpY/2.jpg',upload_time:'1210709491',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/5NhfLP-FwpY/responses'},{id:'h0QMtw4mr2A',title:'Jo Frost, Supernanny, Interview with Avi the TV Geek',author:'AvitheTVGeek',real_length:'488',length_seconds:'08:08',rating_avg:'5.00',rating_count:'2',view_count:'22',description:'Jo Frost, aka Supernanny, talks about her book \u0022Jo Frost\'s Confident Baby Care\u0022.  She also talked about the Supernanny series on ABC.<br /> <br /> The interview was recorded on May 18th, 2008 specifically for WOODTV.com.',tags:'24, ABC, Baby, Care, Confident, Forstein, Frost, Hour, Jo, News, Supernanny, TV, TV8, WOOD, WOODTV.com, WOTV',thumbnail_url:'http://img.youtube.com/vi/h0QMtw4mr2A/2.jpg',upload_time:'1218394002',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/h0QMtw4mr2A/responses'},{id:'J00ehBG0VNg',title:'Ryan Singer at FOWD London',author:'carsonified',real_length:'636',length_seconds:'10:36',rating_avg:'4.32',rating_count:'28',view_count:'17823',description:'Ryan Singer, designer at 37signals, discusses the usability of sign-up forms at the Future of Web Design in London (www.futureofwebdesign.com).',tags:'FOWD, ryansinger, webdesign',thumbnail_url:'http://img.youtube.com/vi/J00ehBG0VNg/2.jpg',upload_time:'1190295862',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/J00ehBG0VNg/responses'},{id:'IOK7l1JYkKg',title:'MEDIA ALERT: April 18th Future of Web Design Conference',author:'marketwire',real_length:'127',length_seconds:'02:07',rating_avg:'',rating_count:'',view_count:'210',description:'Cadillac gaming - Project Gotham Racing 3 (PGR3) by Arc Worldwide',tags:'Arc, Carson, Design, Systems, Web, Worldwide',thumbnail_url:'http://img.youtube.com/vi/IOK7l1JYkKg/2.jpg',upload_time:'1176786961',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/IOK7l1JYkKg/responses'},{id:'NbakN7SLdbk',title:'Lindsey Williams - The Energy Non-Crisis - Part 1 of 8',author:'tonytt98',real_length:'572',length_seconds:'09:32',rating_avg:'4.56',rating_count:'1092',view_count:'540603',description:'Lindsey Williams, who has been an ordained Baptist minister for 28 years, went to Alaska in 1971 as a missionary. The Transalaska oil pipeline began its construction phase in 1974, and because of Mr. Williams\' love for his country and concern for the spiritual welfare of the \u0022pipeliners,\u0022 he volunteered to serve as Chaplain on the pipeline, with the subsequent full support of the Alyeska Pipeline Company. Because of the executive status accorded to him as Chaplain, he was given access to information documented in his eye opening book, The Energy Non-Crisis. <br /> After numerous public speaking engagements in the western states, certain government officials and concerned individuals urged Mr. Williams to put into print what he saw and heard, stating that they felt this information was vital to national security. Mr. Williams firmly believes that whoever controls energy controls the economy. Thus, The Energy Non-Crisis.<br /> <br /> http://www.lwoil.com',tags:'911, alex, bush, crisis, empire, energy, fascism, fiat, freedom, goerge, Iran, iraq, jones, law, martial, terrorstorm, to, truth, war, wtc',thumbnail_url:'http://img.youtube.com/vi/NbakN7SLdbk/default.jpg',upload_time:'1168765538',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/NbakN7SLdbk/responses?v=2',isprivate:'',t:'v'},{id:'7TYmSGwAumk',length_seconds:'10:02',comment_count:'97',author:'tonytt98',title:'Lindsey Williams - The Energy Non-Crisis - Part 5 of 8',description:'Lindsey Williams, who has been an ordained Baptist minister for 28 years, went to Alaska in 1971 as a missionary. The Transalaska oil pipeline began its construction phase in 1974, and because of Mr. Williams\' love for his country and concern for the spiritual welfare of the &quot;pipeliners,&quot; he volunteered to serve as Chaplain on the pipeline, with the subsequent full support of the Alyeska Pipeline Company. Because of the executive status accorded to him as Chaplain, he was given access to information documented in his eye opening book, The Energy Non-Crisis. <br />After numerous public speaking engagements in the western states, certain government officials and concerned individuals urged Mr. Williams to put into print what he saw and heard, stating that they felt this information was vital to national security. Mr. Williams firmly believes that whoever controls energy controls the economy. Thus, The Energy Non-Crisis.<br /><br />http://www.lwoil.com',rating_avg:'4.58',rating_count:'347',view_count:'84154',favorite_count:'319',tags:'911, alex, bush, crisis, empire, energy, fascism, fiat, freedom, goerge, Iran, iraq, jones, law, martial, terrorstorm, to, truth, war, wtc',upload_time:'1168837822',thumbnail_url:'http://img.youtube.com/vi/7TYmSGwAumk/default.jpg',t:'v'},{id:'CN6L2C68Zig',title:'Test Your Awareness: Do The Test',author:'lesleythewriter',real_length:'69',length_seconds:'01:09',rating_avg:'5.00',rating_count:'1',view_count:'655',description:'This video is really cool!  How many passes does the team in white make?  How many opportunities do you pass up each day?  www.LovingLifeInLuxury.com',tags:'ad, attention, awareness, basketball, bike, cycling, do, lesleythewriter, life, love, moonwalking, safety, span, test, TFL, the, visual',thumbnail_url:'http://img.youtube.com/vi/CN6L2C68Zig/2.jpg',upload_time:'1206932908',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/CN6L2C68Zig/responses'},{id:'XGho_kJgtyk',title:'nia skate',author:'elvaci',real_length:'145',length_seconds:'02:25',rating_avg:'1.00',rating_count:'1',view_count:'220',description:'Admirable nia, que dansa de esta manera... espero compartan mis gusto :D',tags:'admirable, divertido, joystick, nia, prodigio, skate',thumbnail_url:'http://img.youtube.com/vi/XGho_kJgtyk/2.jpg',upload_time:'1206341406',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/XGho_kJgtyk/responses'},{author:'Yellowcard11',id:'tSYENiM6NGk',title:'India Cricket - Harbhajan swearing Pietersen',length_seconds:'02:21',rating_avg:'4.70',rating_count:'63',description:'A moment of madness from the Turbanator',view_count:'85277',upload_time:'1148806284',comment_count:'90',tags:'Cricket Harbajan Pieterson',url:'http://www.youtube.com/?v=tSYENiM6NGk',thumbnail_url:'http://i.ytimg.com/vi/tSYENiM6NGk/default.jpg',embed_status:'ok',allow_ratings:'yes',real_length:'141'},{author:'kiwi04',id:'KA2B5X0LhMY',title:'Britain\'s Got Talent - Michael Jackson',length_seconds:'03:37',rating_avg:'4.89',rating_count:'7742',description:'Britain\'s Got Talent - Michael Jackson. Suleman Mirza performing a brilliant act on Britain\'s Got Talent. Watch it the whole way through! Quality is the best on youtube. Subscribe to my channel for more Britain\'s Got Talent videos next week.  Suleman Mirza has his own youtube account - check him out @ http://www.youtube.com/sulemaninfo',view_count:'1968726',upload_time:'1209271921',comment_count:'4454',tags:' Britain\'s Got Talent Britain Michael Jackson Suleman Mirza Indian impersonation impersonator',url:'http://www.youtube.com/?v=KA2B5X0LhMY',thumbnail_url:'http://i.ytimg.com/vi/KA2B5X0LhMY/default.jpg',embed_status:'ok',allow_ratings:'yes',real_length:'217'},{id:'L9Wu1V1JAHw',title:'Certainty In Freedom ~ A Song for Burma (Original Song)',author:'zzzzzzzzap',real_length:'235',length_seconds:'03:55',rating_avg:'4.68',rating_count:'1222',view_count:'243079',description:'I\'m not a particularly political person, by which I mean I\'d sooner just not get involved in conflict, but I realise that, at times, things happen outside your control which will you to say something or do something.  I got a comment on my last song from \'gersing\' asking me if I\'d sing a song for the monks and people of Burma. At first I misunderstood the comment but then it clicked and I felt compelled to offer something.. anything.   I know this song is going to change nothing; and I\'m cautious calling it a protest song as I don\'t understand the situation fully (and I wouldn\'t want to upset anyone), but this is a tune I wrote in response to being repressed (I\'m whatever guise) and how beautiful \'freedom\' really is. I don\'t think anyone will ever understand that term fully but by singing and writing and thinking and speaking we can come somewhere close I\'m sure.   As a disclaimer, I\'d say that, personally, the chords and melody are arbitrary; merely the carrier of the sentiment...  Changing the subject ever so slightly I just wanted to say a big thank you to everyone that\'s shown support; it\'s overwhelming. An apology to anyone I\'ve not yet responded to.. I\'ve never been very good at juggling my time but I will be in touch.  Thanks again...  _________________ Certainty In Freedom  If I had the will to talk I wonder if you\'d give a thought  To what I had to say - help make it go away  Cos there\'s certainty in freedom And in that we must believe in Cos I saw on the news today  If I saw you in the street now Would I look the other way? I hope I\'m strong enough to say - help make it go away  When all you see is hatred Spirits crushed and souls deflated Easy to leave it for another day  Peace is pushing for love Love is leading the way You should follow its path Darkness leads you astray Peace is pushing for love Love is leading the way  So this, my only voice to speak My message strong, my tone is weak I find it hard to say - help make it go away  And if I come across obtuse I urge you now to cut the noose Don\'t leave it for another day  Peace is pushing for love Love is leading the way You should follow its path Darkness leads you astray Peace is pushing for love Love is leading the way  If I had the will to talk I wonder if you\'d give a thought  To what I had to say - help make it go away  Cos there\'s certainty in freedom And in that we must believe in Cos I saw on the news today  Peace is pushing for love Love is leading the way You should follow its path Darkness leads you astray Peace is pushing for love Love is leading the way  _____________________ Peace  Available on the \'Unequal Measures\', available through http://www.krisrowley.com  Kris Rowley 2007',tags:'acoustic, bass, burma, certainty, for, freedom, guitar, in, original, piano, song, zzzzzzzzap',thumbnail_url:'http://img.youtube.com/vi/L9Wu1V1JAHw/2.jpg',upload_time:'1191162332',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/L9Wu1V1JAHw/responses'},{id:'vRrO1fpKiV8',author:'IndianGuruBhai',title:'Who Wants Some Dishoom?',rating_avg:'5.00',rating_count:'4',tags:'Who wants Dishoom funny india indian comedy',description:'Who Want some Dishoom?A funny clip with Bush Kerry and Amitabh Bachchan OHYEAh!',update_time:'1199010349',view_count:'1294',comment_count:'4',upload_time:'1181772715',length_seconds:'231',recording_date:'',recording_location:'',recording_country:'',channel_list:'Array',thumbnail_url:'http://img.youtube.com/vi/vRrO1fpKiV8/default.jpg',embed_status:'ok'},{id:'O7_dzu4TQDs',author:'recshooter',title:'What is Systema? Systema Self Defense Mega clip',rating_avg:'4.61',rating_count:'18',tags:' Systema system Mikahil Ryabko Vladimir Vasiliev martial arts RMA rbsd self defense defence internal Russian art',description:'This is a collection of my favorite clips and I hope you enjoy it.  Thanks to everyone who originally posted the videos that were used.  Many of the videos that I used can be found in my favorites if you want to see the complete video of a given clip.',update_time:'1198831287',view_count:'5698',comment_count:'14',upload_time:'1195365792',length_seconds:'356',recording_date:'',recording_location:'',recording_country:'',channel_list:'Array',thumbnail_url:'http://img.youtube.com/vi/O7_dzu4TQDs/default.jpg',embed_status:'ok'},{author:'fiftywan',id:'duh6eAtxpAo',title:'Morning Musume - Rudolf the red nosed reindeer Xmas',length_seconds:'02:19',rating_avg:'4.81',rating_count:'52',description:'Morning Musume Cosplayed as Reindeers singing Rudolf the Red-nosed Reindeer',view_count:'26929',upload_time:'1166918426',comment_count:'47',tags:'Morning Musume Momusu Christmas Rudolf reindeer',url:'http://www.youtube.com/?v=duh6eAtxpAo',thumbnail_url:'http://img.youtube.com/vi/duh6eAtxpAo/default.jpg',embed_status:'ok',real_length:'139'},{id:'AL_c_QM4dNc',title:'Clay Play',author:'SmarToonz',real_length:'300',length_seconds:'05:00',rating_avg:'4.69',rating_count:'140',view_count:'54066',description:'Little fingers love clay because its shape changes fast enough to keep up with their quick minds.  ClayPlay involves toddlers in keen observation of how objects interact with their environments, while celebrating clay\'s endless possibilities.  What will the clump of clay become this time?  Elephants playing catch with a coconut? A tractor tilling the soil?  Clay can magically become anything and everything. ClayPlay stimulates tots\' creativity, and gives them  a sense of their own vast potential.',tags:'stop, babies, children, show, elephants, claymation, best, motion, Clay, animation, art, play, shape, fun, kids, toddlers, changes, TV',thumbnail_url:'http://img.youtube.com/vi/AL_c_QM4dNc/2.jpg',upload_time:'1173091022',comment_count:'0',url:'http://www.youtube.com/watch?v=AL_c_QM4dNc'},{id:'rGUt7ropzNA',title:'Aimee Mann Freeway Video Contest',author:'aimeemann',real_length:'142',length_seconds:'02:22',rating_avg:'3.73',rating_count:'411',view_count:'388930',description:'Want a chance to sing with Aimee Mann live? Go to http://www.youtube.com/group/aimeemanncontest and upload a video of yourself singing Aimee Mann\'s new song \u0022Freeway.\u0022  Aimee Mann and SuperEgo Records will pick their favorite entry to be featured on YouTube and www.aimeemann.com. The winner will have an opportunity to sing live with Aimee at one of her upcoming shows. Ten runners-up will receive an autographed copy of Aimee\'s new CD, @#&*! Smilers.  Entrants can get the lyrics, the instrumental version of \u0022Freeway\u0022 and contest details at: http://www.aimeemann.com/freewaycontest/ Submissions must be received by July 7th 2008',tags:'Aimee, contest, Freeway, Mann',thumbnail_url:'http://img.youtube.com/vi/rGUt7ropzNA/2.jpg',upload_time:'1212002067',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/rGUt7ropzNA/responses'},{author:'SmarToonz',id:'ct3YaeRkcRE',title:'Monkey See Monkey Do',length_seconds:'05:00',rating_avg:'4.07',rating_count:'74',description:'This ain\'t your Great Grand-Pop\'s Passive TV. Monkey See Monkey Do will have the tykes at home wagging their tails and flapping their wings all over the TV room. Animated animals and live-action children groove together in this boogying jungle game. Each episode features our monkey host who invites kids to discover, imitate and then dance along with the animal guest of the day.   Then everyone sings and dances like a partying jungle kingdom.  Warning:  Grown-ups are not immune to these highly infectious rhythms.',view_count:'123075',upload_time:'1173005977',comment_count:'21',tags:'Animation preschool monkey 3D best TV fun show interactive kids play animals dance hit live action children baby',url:'http://www.youtube.com/?v=ct3YaeRkcRE',thumbnail_url:'http://img.youtube.com/vi/ct3YaeRkcRE/default.jpg',embed_status:'ok',real_length:'300'},{author:'Tiger133',id:'sshbHTDSwCk',title:'Monkey mess with tiger',length_seconds:'03:25',rating_avg:'4.74',rating_count:'928',description:'Monkey Vs Tiger',view_count:'594447',upload_time:'1158329027',comment_count:'551',tags:'Monkey',url:'http://www.youtube.com/?v=sshbHTDSwCk',thumbnail_url:'http://img.youtube.com/vi/sshbHTDSwCk/default.jpg',embed_status:'ok',real_length:'205'},{author:'airmaku7',id:'Efh7sCK6njA',title:'Laaga Chunri me daag- Dil hi to hai (hindi film) bollywood',length_seconds:'06:30',rating_avg:'4.92',rating_count:'118',description:'Dil Hi To Hai Laaga Chunri me daag from film Dil hi to hai- acting by Raj Kapoor',view_count:'41356',upload_time:'1176426529',comment_count:'42',tags:'Laga chunri me daag Laaga Dil hi to hai bollywood hindi',url:'http://www.youtube.com/?v=Efh7sCK6njA',thumbnail_url:'http://img.youtube.com/vi/Efh7sCK6njA/default.jpg',embed_status:'ok',real_length:'390'},{author:'DesiMens',id:'uDK1BCJ-r3M',title:'Yeh Dosti',length_seconds:'02:32',rating_avg:'4.69',rating_count:'13',description:'Our first video. A remake of the classic Yeh Dosti.',view_count:'2349',upload_time:'1166245866',comment_count:'10',tags:'desi amitabh sholay yeh dosti bollywood desis boys girls fobs fob hindi urdu funny abishek abishake bachun bachan',url:'http://www.youtube.com/?v=uDK1BCJ-r3M',thumbnail_url:'http://img.youtube.com/vi/uDK1BCJ-r3M/default.jpg',embed_status:'ok',real_length:'152'},{author:'thesecretuniverse',id:'0yMc_KuqFzA',title:'My Mind Movie on Attracting Riches',length_seconds:'03:19',rating_avg:'3.83',rating_count:'30',description:'http://www.channelofsuccess.com  law of attraction laws of attraction the law of attraction law of attraction abraham law of attraction movie laws of attraction movie secret law of attraction the laws of attraction the secret law of attraction universal law of attraction universal laws of attraction 17 seconds and the law of attraction abraham hicks law of attraction abraham\'s law of attraction...',view_count:'10012',upload_time:'1185228882',comment_count:'48',tags:'the secret mlm network marketing law of attraction millionaire riches bob proctor mind movies visualization wealth',url:'http://www.youtube.com/?v=0yMc_KuqFzA',thumbnail_url:'http://img.youtube.com/vi/0yMc_KuqFzA/default.jpg',embed_status:'ok',real_length:'199'},{author:'ee777e',id:'jHeWbhcBa8c',title:'司会者にガンを飛ばす沢尻エリカ　映画『Closed Note』初日舞台挨拶',length_seconds:'04:51',rating_avg:'3.83',rating_count:'235',description:'ニコニコにもあげてます。 早く芸能界から消えてください。',view_count:'1070729',upload_time:'1191199251',comment_count:'351',tags:'沢尻エリカ クローズド・ノート',url:'http://www.youtube.com/?v=jHeWbhcBa8c',thumbnail_url:'http://img.youtube.com/vi/jHeWbhcBa8c/default.jpg',embed_status:'ok',real_length:'291'},{author:'tigerbalmcontest',id:'Lrn8LckHnLc',title:'Submit your Tiger Balm contest video!  Time IS short!',length_seconds:'01:47',rating_avg:'2.20',rating_count:'4276',description:'Let America see your creativity, submit your winning video now to win a fabulous trip to Hawaii. OR.....take the $5000 cash, hit the mall and shop to your heart\'s content!  And do come back on Nov. 8th to vote for your favorite entry!  For more info on the contest please check out: http://www.youtube.com/tigerbalmcontest',view_count:'962810',upload_time:'1191471816',comment_count:'0',tags:'Hawaii shopping spree eternal glory Tiger Balm',url:'http://www.youtube.com/?v=Lrn8LckHnLc',thumbnail_url:'http://img.youtube.com/vi/Lrn8LckHnLc/default.jpg',embed_status:'ok',real_length:'107'},{author:'Sidecosa',id:'rqwdUI6-6GU',title:'Funny 3D Animation!',length_seconds:'03:11',rating_avg:'4.28',rating_count:'185',description:'something fishy',view_count:'81419',upload_time:'1172137881',comment_count:'76',tags:'Funny!',url:'http://www.youtube.com/?v=rqwdUI6-6GU',thumbnail_url:'http://img.youtube.com/vi/rqwdUI6-6GU/default.jpg',embed_status:'ok',real_length:'191'},{author:'FireStarterUT',id:'9WlbQPmXg08',title:'Wonderful World shadow puppet',length_seconds:'02:17',rating_avg:'4.93',rating_count:'196',description:'Shadow puppets. Pretty funny.',view_count:'65044',upload_time:'1187788870',comment_count:'47',tags:'Shadow Puppet wonderful world funny',url:'http://www.youtube.com/?v=9WlbQPmXg08',thumbnail_url:'http://img.youtube.com/vi/9WlbQPmXg08/default.jpg',embed_status:'ok',real_length:'137'},{author:'conceit',id:'R_ruSmFFdAY',title:'CONCEIT- Scissors & Glue ON THE RISE CONTEST WINNER',length_seconds:'02:22',rating_avg:'3.89',rating_count:'470',description:'Conceit - Scissors & Glue Prod. Memo of the Molemen from the WASTED TALENT MIXTAPE straight out the SAN FRANCISCO BAY AREA!!!  Machete Vox - Gurp City - Strangeface - Kill Technology Much love 2 LORDS CREW UM 86\'in  MYSPACE.COM/conceit gurpcity.net',view_count:'90526',upload_time:'1187381151',comment_count:'507',tags:'rap music contest 50 cent conceit sf bay area ontherise wasted talent gurp city machete vox',url:'http://www.youtube.com/?v=R_ruSmFFdAY',thumbnail_url:'http://img.youtube.com/vi/R_ruSmFFdAY/default.jpg',embed_status:'ok',real_length:'142'},{author:'912crew',id:'zpJCByIV1gk',title:'After 9/11 The Intimate Story',length_seconds:'02:50',rating_avg:'4.42',rating_count:'1480',description:'This group of local New Yorkers rushed to the scene and planted themselves at Ground Zero despite the authorities\' best efforts to kick them out.  See the recovery effort through the eyes of these fearless volunteers as they work to heal their city and themselves.  Trailer for the documentary \u00229/12: From Chaos to Community\u0022.  DVD feature available at www.912Film.com.',view_count:'323826',upload_time:'1184293532',comment_count:'1363',tags:'9/11 9-11 9/12 912crew 912 From Ground Zero World Trade Center WTC Twin Towers volunteer firemen FDNY FEMA Giuliani',url:'http://www.youtube.com/?v=zpJCByIV1gk',thumbnail_url:'http://img.youtube.com/vi/zpJCByIV1gk/default.jpg',coordinates:'40.7472569628042 ,-74.00390625',embed_status:'ok',real_length:'170'},{author:'kingandgiggles',id:'nerafD96cPw',title:'Camouflage Back Massage',length_seconds:'03:52',rating_avg:'3.86',rating_count:'2458',description:'Rap video about giving extremely hard back massages while looking totally fly in camo. http://www.myspace.com/kingsolomonandgiggles',view_count:'401184',upload_time:'1181327268',comment_count:'1818',tags:'entourage king solomon giggles camouflage camoflage camaflage camoflauge massage rap hip hop video funny comedy piven',url:'http://www.youtube.com/?v=nerafD96cPw',thumbnail_url:'http://img.youtube.com/vi/nerafD96cPw/default.jpg',embed_status:'ok',real_length:'232'},{author:'P0YKPAC',id:'kAO4EVMlpwM',title:'Hipster Olympics',length_seconds:'08:53',rating_avg:'4.47',rating_count:'2161',description:'From POYKPAC: The internet video that used to be funny, until it sold out and got featured on Youtube.  (If you like it, subscribe. You\'ll be the first to know when we upload new videos)  Seriously - much thanks to Youtube for featuring us again. We at POYKPAC just want to say that we like Youtube in the most unironic way possible.  STARRING Announcer Greg Berman - Taige Jensen (voice) Announcer Neil Tafoya - Ryan Hunter (voice) Reporter Conica Friesbee - Jenn Lyon #1, Sasha Pinrod III - Taige Jensen #2, Larken Trebek - Maggie Ross #3, Nolan Shelby - Ryan Hunter #4, Zac Zuro - Ryan Hall #5, Gideon Zidoushe - Dave Powell Referee Wally Masters - Will Connell Square Sean Ericsson - Eric Sherertz  DISCLAIMER: POYKPAC™ and POYKPAC Sports™ have no affiliation with Pabst Brewing Company, American Apparel, Myspace.com, cocaine, Pitchfork Media, The Elephant 6 Recording Company, Domino Recording Company Ltd, EMI, MoTown Records, or Vice Magazine Publishing Inc. All products and companies portrayed were done so satirically.  This short film is, however, a shameless tribute to Monty Python\'s \u0022The Upperclass Twit of the Year.\u0022 All that being said: Let the lawsuits commence!  Discuss at http://poykpac.informe.com/',view_count:'502645',upload_time:'1187770531',comment_count:'1015',tags:'poykpac hipster olympics williamsburg brooklyn mccarren park pool pabst blue ribbon pbr monty python upperclass twit',url:'http://www.youtube.com/?v=kAO4EVMlpwM',thumbnail_url:'http://img.youtube.com/vi/kAO4EVMlpwM/default.jpg',embed_status:'ok',real_length:'533'},{author:'wickedawesomefilms',id:'Fj08LvJpKWk',title:'PUNCHY 2!!',length_seconds:'06:28',rating_avg:'3.67',rating_count:'2496',description:'Punchy returns in this EPIC SEQUEL by Wicked Awesome Films. AH-DOO-BA-DEE-2!',view_count:'380592',upload_time:'1187917565',comment_count:'1795',tags:'punchy 2 wickedawesomefilms bobby jennings kevin brueck eric ledallic punch kick kicky office heroes kiki vonbutterglass',url:'http://www.youtube.com/?v=Fj08LvJpKWk',thumbnail_url:'http://img.youtube.com/vi/Fj08LvJpKWk/default.jpg',embed_status:'ok',real_length:'388'},{author:'bharatarmyfan',id:'8s7eBZS26co',title:'Bharat Army - Cricket Bristol - India v England 2007',length_seconds:'01:29',rating_avg:'0.00',rating_count:'0',description:'Bharat Army - Cricket Bristol - India v England 2007. Where India won !!',view_count:'103',upload_time:'1188770122',comment_count:'0',tags:'Bharat Army -Cricket Bristol India England',url:'http://www.youtube.com/?v=8s7eBZS26co',thumbnail_url:'http://img.youtube.com/vi/8s7eBZS26co/default.jpg',embed_status:'ok',real_length:'89'},{author:'francisstokesdotcom',id:'ba1OLZajyJs',title:'\'Harold Buttleman, Daredevil Stuntman\' FULL FEATURE FILM',length_seconds:'95:19',rating_avg:'4.14',rating_count:'1574',description:'A feature film from the makers of \'God, Inc\'. Harold Buttleman, small town tuxedo salesman, thinks he\'s the next Evel Knievel. He\'s not.  Now you can help support my projects - I get a dollar for everyone who joins Spout (it\'s free!)- http://www.spout.com/francisstokes You can buy DVDs here: http://www.customflix.com/233633  Synopsis: Harold Buttleman (John Hawkes, \'Deadwood\') is a small town tuxedo salesman who thinks he\'s the next Evel Knievel. He is on the brink of TV stardom (a 3 a.m. spot on late night cable access), but the life of a daredevil stuntman is harder than it looks. Harold\'s parents want him to move out of their basement and his girlfriend wants him to settle into a career selling bathtub parts.  For Harold, it all depends on his big break - he gathers the entire town for his gala premiere celebration, but there\'s a surprise in store. An offbeat comedy about following your dreams, and the finer points of being shot out of a cannon. Also stars Anita Barone, Stephen Falk (\'God, Inc\'), Stephanie Jane Markham (\'God, Inc\'), Karen Black (\'Easy Rider\') and Dan Castellaneta (\'The Simpsons\').  Thanks a lot for checking out our movie! For more info, visit http://www.francisstokes.com',view_count:'362528',upload_time:'1185441944',comment_count:'1292',tags:'god inc harold buttleman daredevil stuntman hot rod stunt comedy funny',url:'http://www.youtube.com/?v=ba1OLZajyJs',thumbnail_url:'http://img.youtube.com/vi/ba1OLZajyJs/default.jpg',embed_status:'ok',real_length:'5719'},{author:'ParadoxModelMinority',id:'2KQxriuE284',title:'Britney Spears- Gimme More [ Official Full Length ] !!!!!!',length_seconds:'04:08',rating_avg:'3.67',rating_count:'3398',description:'BRITNEY SPEARS\' AMAZING NEW SINGLE PRODUCED BY NATE \u0022DANJA\u0022 HILLS TIMBALAND\'S PROTEGE.',view_count:'734377',upload_time:'1188515253',comment_count:'4505',tags:'Britney Spears Gimme More New Single Danja Perez Hilton MTV VMA',url:'http://www.youtube.com/?v=2KQxriuE284',thumbnail_url:'http://img.youtube.com/vi/2KQxriuE284/default.jpg',embed_status:'ok',real_length:'248'},{author:'HollyscoopTV',id:'bAMykPoZPWc',title:'American Idol Winner A Virgin',length_seconds:'02:42',rating_avg:'2.14',rating_count:'1480',description:'Jordin Sparks says she is a virgin until marriage. Amy Winehouse wont stop using drugs and there is a boycott for her music. Britney Spears \u0022Oops I Did It Agian\u0022 \u0022crazy\u0022 video continues to take over her life. Jude Law\'s newest love interest is German Model Susan Hoecke and not his \u0022The Holiday\u0022 co-star Cameron Diaz. Jay Z told Rihanna to either take a plunge or sign with Def Jamm. All the scoop from Hollyscoop brough to you by our hollyscoop hottie Chelsea Cannell from the streets of Hollywood blvd.',view_count:'775189',upload_time:'1188336480',comment_count:'911',tags:'American Idol Jordin Sparks virgin amy winehouse susan Hoecke jude law the holiday cameron diaz hot sexy girls model',url:'http://www.youtube.com/?v=bAMykPoZPWc',thumbnail_url:'http://img.youtube.com/vi/bAMykPoZPWc/default.jpg',embed_status:'ok',real_length:'162'},{author:'Anetaflorczykcom',id:'FJug16NlqPk',title:'Aneta Florczyk\'s frying pan',length_seconds:'00:25',rating_avg:'4.15',rating_count:'1481',description:'Apart from being World Strongest Woman Aneta Florczyk is also normal houswife and she knows how to use the frying pan. ;)  Visit www.AnetaFlorczyk.com',view_count:'1303824',upload_time:'1176823090',comment_count:'3736',tags:'aneta florczyk housewife pan frying saucepan bending rolling steel strong strength strongwoman strongman woman power',url:'http://www.youtube.com/?v=FJug16NlqPk',thumbnail_url:'http://img.youtube.com/vi/FJug16NlqPk/default.jpg',embed_status:'ok',real_length:'25'},{author:'schafferthedarklord',id:'clcZah3P4cs',title:'Schaffer the Darklord - \u0022The Rappist\u0022 (Short Version)',length_seconds:'04:44',rating_avg:'4.14',rating_count:'1128',description:'Directed and edited by Bruce Ashley. Produced by Amy Selwocki. Featuring the Peach Tartes. With Leslie Hendrix, Leigh Hurwitz and Sarah Schaffer. Visit STD at http://myspace.com/schafferthedarklord',view_count:'139167',upload_time:'1186613717',comment_count:'826',tags:'schaffer darklord rappist peach tartes',url:'http://www.youtube.com/?v=clcZah3P4cs',thumbnail_url:'http://img.youtube.com/vi/clcZah3P4cs/default.jpg',embed_status:'ok',real_length:'284'},{author:'double929',id:'03YbknYlJK0',title:'Live from the Rock-It - \u0022Sea Breeze\u0022',length_seconds:'06:39',rating_avg:'4.43',rating_count:'644',description:'Tyrone performs \u0022Sea Breeze\u0022 and tells a story while traveling in his tour van (called the Rock-It).  Artist: Tyrone Wells Song: \u0022Sea Breeze\u0022 Album: \u0022Hold On\u0022 www.myspace.com/tyronewells  The new album \u0022Hold On,\u0022 is available at iTunes, Amazon, Best Buy, Barnes & Noble, etc.',view_count:'191992',upload_time:'1163710060',comment_count:'761',tags:'Tyrone Wells Sea Breeze Seabreeze music singer-songwriter tour pop rock soul live performance rocket',url:'http://www.youtube.com/?v=03YbknYlJK0',thumbnail_url:'http://img.youtube.com/vi/03YbknYlJK0/default.jpg',embed_status:'ok',real_length:'399'},{author:'journeymanpictures',id:'UbuCzTGypiY',title:'Afghanistan: Kabul Football Club',length_seconds:'10:09',rating_avg:'4.47',rating_count:'734',description:'Under the Taliban, Kabul\'s football stadium was a place of fear and execution. Football was discouraged and spectators banned from cheering. But through all the years of oppression, love of the beautiful game remained. Now, in a symbol of the country\'s rebirth, Afghanistan is rebuilding its national team. We follow football legend Ali Askar Lali as he returns from exile in Germany to select and train the new players. Working in farcical conditions, he tries to prepare the men for their first symbolic international match. Will the team be ready? And do they stand any chance of success?',view_count:'212636',upload_time:'1187185038',comment_count:'1438',tags:'afghanistan athletes football soccer taliban dramatic',url:'http://www.youtube.com/?v=UbuCzTGypiY',thumbnail_url:'http://img.youtube.com/vi/UbuCzTGypiY/default.jpg',embed_status:'not_allowed',real_length:'609'},{author:'trix82',id:'aFKyAMQPbmI',title:'Nokia\'s iPhone at Engadget',length_seconds:'00:21',rating_avg:'3.16',rating_count:'690',description:'Nokia\'s iPhone',view_count:'700556',upload_time:'1188398344',comment_count:'1452',tags:'nokia iphone',url:'http://www.youtube.com/?v=aFKyAMQPbmI',thumbnail_url:'http://img.youtube.com/vi/aFKyAMQPbmI/default.jpg',embed_status:'ok',real_length:'21'}]},
		initialize: function () {this.createP()}

};
var IDTVLBDataSource81988d1490IF = function () {IDTVLBDataSource81988d1490.initialize.apply(IDTVLBDataSource81988d1490, []);};
if (document.getElementById('IDTVP_81988d1490'))
	IDTVLBDataSource81988d1490IF ();
else if (window.addEventListener)
	window.addEventListener("load", IDTVLBDataSource81988d1490IF, true);
else
	window.attachEvent("onload", IDTVLBDataSource81988d1490IF);
