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

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

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

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

var IDTVLBDataSourcec0f5e11f91 = {
	id: 'c0f5e11f91', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 327, height: 102, pp: 1,
	rows: 1, cols: 1,
	plw: 500, plh: 420,
	createP: function () {
		if (this.reverse_playlist) this.data.results = this.data.results.reverse();
		this.p = new IDTVLBP(this);
	},
	plpl: 'center',
	only_public:true,mark_private:true,
	thumb_show_title : true, thumb_show_author : false,
	thumb_show_rating : false, thumb_show_views: false,
	thumb_show_length : true, thumb_show_description : false,
	thumb_show_labels : true,
	thumbnail_text: 'R',
	reverse_playlist: false,
	pldelta: 0,
Table './idesktop/yt_cache' is marked as crashed and should be repaired<br>Query: insert into yt_cache values ('http://gdata.youtube.com/feeds/api/standardfeeds/most_popular?max-results=10&start-index=1&safeSearch=moderate&format=5&v=2&client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&key=AI39si5QWl6WGY_2385XkoUaIPz1HOMVnixcqhiWVfd_YNvJAeHGWsXOBTb-a3jz5noA5jGUkd5ydVTwzEy8OLkG4jC_Lh7Mew', 218, '<?xml version=\'1.0\' encoding=\'UTF-8\'?><feed xmlns=\'http://www.w3.org/2005/Atom\' xmlns:app=\'http://www.w3.org/2007/app\' xmlns:media=\'http://search.yahoo.com/mrss/\' xmlns:openSearch=\'http://a9.com/-/spec/opensearch/1.1/\' xmlns:gd=\'http://schemas.google.com/g/2005\' xmlns:yt=\'http://gdata.youtube.com/schemas/2007\' gd:etag=\'W/&quot;DUENQXc9fyp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:standardfeed:us:most_popular</id><updated>2012-02-08T22:08:10.967-08:00</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><title>Most Popular</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/browse?s=bzb\'/><link rel=\'http://schemas.google.com/g/2005#feed\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/most_popular?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://schemas.google.com/g/2005#batch\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/batch?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/most_popular?start-index=1&amp;max-results=10&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.208&amp;format=5&amp;safeSearch=moderate&amp;v=2\'/><link rel=\'service\' type=\'application/atomsvc+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular?alt=atom-service&amp;v=2\'/><link rel=\'next\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/most_popular?start-index=11&amp;max-results=10&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.208&amp;format=5&amp;safeSearch=moderate&amp;v=2\'/><author><name>YouTube</name><uri>http://www.youtube.com/</uri></author><generator version=\'2.1\' uri=\'http://gdata.youtube.com\'>YouTube data API</generator><openSearch:totalResults>100</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>10</openSearch:itemsPerPage><entry gd:etag=\'W/&quot;DUEMRn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:T6j4f8cHBIM</id><published>2012-01-20T20:52:14.000Z</published><updated>2012-02-09T06:08:07.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by the content owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nicki\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Minaj\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Stupid\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hoe\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'(Explicit)\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cash\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Money/Republic\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Records\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rap/Hip-Hop\'/><title>Nicki Minaj - Stupid Hoe (Explicit)</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/T6j4f8cHBIM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=T6j4f8cHBIM&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/T6j4f8cHBIM/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/T6j4f8cHBIM/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/T6j4f8cHBIM/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/T6j4f8cHBIM/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/T6j4f8cHBIM?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>NickiMinajAtVEVO</name><uri>http://gdata.youtube.com/feeds/api/users/aum3Yzdl3TbBt8YUeUGZLQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'allowed\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'denied\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/T6j4f8cHBIM/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'357574\'/></gd:comments><yt:hd/><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/T6j4f8cHBIM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'210\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>NickiMinajAtVEVO</media:credit><media:description type=\'plain\'>Music video by Nicki Minaj performing Stupid Hoe (Explicit). (C) 2012 Cash Money Records Inc.</media:description><media:keywords>Nicki, Minaj, Stupid, Hoe, (Explicit), Cash, Money/Republic, Records, Rap/Hip-Hop</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=T6j4f8cHBIM&amp;feature=youtube_gdata_player\'/><media:restriction type=\'country\' relationship=\'deny\'>DE</media:restriction><media:thumbnail url=\'http://i.ytimg.com/vi/T6j4f8cHBIM/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:45\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/T6j4f8cHBIM/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/T6j4f8cHBIM/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:52.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/T6j4f8cHBIM/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:45\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/T6j4f8cHBIM/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:37.500\' yt:name=\'end\'/><media:title type=\'plain\'>Nicki Minaj - Stupid Hoe (Explicit)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'210\'/><yt:uploaded>2012-01-20T20:52:14.000Z</yt:uploaded><yt:videoid>T6j4f8cHBIM</yt:videoid></media:group><gd:rating average=\'2.3036554\' max=\'5\' min=\'1\' numRaters=\'521239\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'56833\' viewCount=\'26570852\'/><yt:rating numDislikes=\'351360\' numLikes=\'169879\'/></entry><entry gd:etag=\'W/&quot;DUEDRH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:OZLUa8JUR18</id><published>2012-01-31T03:27:42.000Z</published><updated>2012-02-09T06:07:55.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by the content owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lil\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Wayne\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Mirror\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cash\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Money\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Records/Universal\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Records\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rap/Hip-Hop\'/><title>Lil Wayne - Mirror ft. Bruno Mars</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/OZLUa8JUR18?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=OZLUa8JUR18&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/OZLUa8JUR18/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/OZLUa8JUR18/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/OZLUa8JUR18/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/OZLUa8JUR18/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/OZLUa8JUR18?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>LilWayneVEVO</name><uri>http://gdata.youtube.com/feeds/api/users/EOhcOACopL42xyOBIv1ekg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'allowed\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'denied\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/OZLUa8JUR18/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'76044\'/></gd:comments><yt:hd/><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/OZLUa8JUR18?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'243\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>LilWayneVEVO</media:credit><media:description type=\'plain\'>Music video by Lil Wayne performing Mirror. © 2012 Cash Money Records/Young Money Ent./Universal Rec.</media:description><media:keywords>Lil, Wayne, Mirror, Cash, Money, Records/Universal, Records, Rap/Hip-Hop</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=OZLUa8JUR18&amp;feature=youtube_gdata_player\'/><media:restriction type=\'country\' relationship=\'deny\'>DE</media:restriction><media:thumbnail url=\'http://i.ytimg.com/vi/OZLUa8JUR18/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:01.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/OZLUa8JUR18/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/OZLUa8JUR18/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:00.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/OZLUa8JUR18/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:01.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/OZLUa8JUR18/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:02.250\' yt:name=\'end\'/><media:title type=\'plain\'>Lil Wayne - Mirror ft. Bruno Mars</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'243\'/><yt:uploaded>2012-01-31T03:27:42.000Z</yt:uploaded><yt:videoid>OZLUa8JUR18</yt:videoid></media:group><gd:rating average=\'4.8222075\' max=\'5\' min=\'1\' numRaters=\'209795\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'104172\' viewCount=\'21536597\'/><yt:rating numDislikes=\'9325\' numLikes=\'200470\'/></entry><entry gd:etag=\'W/&quot;DUEGQX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:uU6U-8LP1DY</id><published>2012-01-19T08:57:15.000Z</published><updated>2012-02-09T06:07:00.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'iphone\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'juliet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'my first\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'official\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hardcore\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'my first hardcore song\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'robert\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'i love robert\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'juliets first hardcore song\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'my\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'first\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'song\'/><title>\'My First Hardcore Song\' by 8 yr old Juliet OFFICIAL</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/uU6U-8LP1DY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=uU6U-8LP1DY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uU6U-8LP1DY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uU6U-8LP1DY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uU6U-8LP1DY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/uU6U-8LP1DY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=uU6U-8LP1DY\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/uU6U-8LP1DY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>thetinaxo</name><uri>http://gdata.youtube.com/feeds/api/users/1JdtTddPyXImSW5LO6yC1g</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><yt:hd/><yt:location>Brisbane</yt:location><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/uU6U-8LP1DY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'59\' yt:format=\'5\'/><media:content url=\'rtsp://v1.cache3.c.youtube.com/CnELENy73wIaaAk21M_C-5ROuRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'59\' yt:format=\'1\'/><media:content url=\'rtsp://v3.cache3.c.youtube.com/CnELENy73wIaaAk21M_C-5ROuRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'59\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>thetinaxo</media:credit><media:description type=\'plain\'>iTunes Song/Ringtone: http://itunes.apple.com/album/my-first-hardcore-song-single/id497156042
T-Shirts/Singlets SALE ON NOW: http://www.myfirsthardcoresong.com
Facebook: http://www.facebook.com/myfirsthardcoresong

8 yr old Juliet teamed up with the hottest producer ROB SHARPE this school holidays and smashed out this BRUTAL track.. Juliet takes you on a journey of her love for her dog, Robert and how her pet fish stink even though Juliet has zero sense of smell. The Australian Hardcore scene will never be the same!!

Rob Sharpe contact info - rob-sharpe@hotmail.com

This is the ORIGINAL video you naughty kids who keep posting new versions :P 

AS SEEN ON EVERY INTERNET WEBPAGE EVER CREATED IN THE WHOLE ENTIRE WORLD... EVEN TASMANIA!!!!</media:description><media:keywords>iphone, juliet, my first, official, hardcore, my first hardcore song, robert, i love robert, juliets first hardcore song, my, first, song</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=uU6U-8LP1DY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uU6U-8LP1DY/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:29.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uU6U-8LP1DY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uU6U-8LP1DY/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:14.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uU6U-8LP1DY/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:29.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/uU6U-8LP1DY/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:44.250\' yt:name=\'end\'/><media:title type=\'plain\'>\'My First Hardcore Song\' by 8 yr old Juliet OFFICIAL</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'59\'/><yt:uploaded>2012-01-19T08:57:15.000Z</yt:uploaded><yt:videoid>uU6U-8LP1DY</yt:videoid></media:group><gd:rating average=\'4.7161713\' max=\'5\' min=\'1\' numRaters=\'168059\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:recorded>2012-01-19</yt:recorded><yt:statistics favoriteCount=\'56278\' viewCount=\'19739030\'/><yt:rating numDislikes=\'11925\' numLikes=\'156134\'/></entry><entry gd:etag=\'W/&quot;DUEBQH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:1IAhDGYlpqY</id><published>2012-01-11T03:14:37.000Z</published><updated>2012-02-09T06:07:31.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Nonprofit\' label=\'Nonprofits &amp; Activism\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jesus\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'love\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'religion\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bible\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'christian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'grace\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mercy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'god\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'spirit\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'faith\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hate\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'like Gospel Word Holy\'/><title>Why I Hate Religion, But Love Jesus || Spoken Word</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/1IAhDGYlpqY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=1IAhDGYlpqY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/1IAhDGYlpqY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/1IAhDGYlpqY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/1IAhDGYlpqY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/1IAhDGYlpqY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=1IAhDGYlpqY\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/1IAhDGYlpqY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>bball1989</name><uri>http://gdata.youtube.com/feeds/api/users/c4yillQaNo6a-iG2PYbbrA</uri></author><yt:accessControl action=\'comment\' permission=\'denied\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><yt:hd/><media:group><media:category label=\'Nonprofits &amp; Activism\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Nonprofit</media:category><media:content url=\'http://www.youtube.com/v/1IAhDGYlpqY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'244\' yt:format=\'5\'/><media:content url=\'rtsp://v6.cache6.c.youtube.com/CnELENy73wIaaAmmpiVmDCGA1BMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'244\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache7.c.youtube.com/CnELENy73wIaaAmmpiVmDCGA1BMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'244\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>bball1989</media:credit><media:description type=\'plain\'>A poem I wrote to highlight the difference between Jesus and false religion. In the scriptures Jesus received the most opposition from the most religious people of his day. At it\'s core Jesus\' gospel and the good news of the Cross is in pure opposition to self-righteousness/self-justification. Religion is man centered, Jesus is God-centered. This poem highlights my journey to discover this truth. Religion either ends in pride or despair. Pride because you make a list and can do it and act better than everyone, or despair because you can\'t do your own list of rules and feel \"not good enough\" for God. With Jesus though you have humble confident joy because He represents you, you don\'t represent yourself and His sacrifice is perfect putting us in perfect standing with God the Father.

Wanna support a good cause and also wear something that sparks conversation? Peep the Jesus is greater than religion shirts. (a fat chunk of proceeds goes to sustaining and providing resources, food, and help to homeless and downtrodden. Read more about where the proceeds go under \'3Sixty house\' on site!) - http://www.gratefulapparel.com/product/jesus-religion

Facebook: http://www.facebook.com/pages/Jefferson-Bethke/339101236109342

Video Editor email: matthew@robgroup.com

Video website: http://www.cikproductions.com

music by Tony Anderson: http://www.soundcloud.com/23violins

iTunes of soundtrack: http://itunes.apple.com/us/album/the-prophecy-feat.-aubrey/id495688128?fb_source=message&amp;ign-mpt=uo%3D4

Website: http://chiselseason.com/

Twitter: http://twitter.com/#!/jeffuhsonbethke

To contact regarding booking, speaking, etc email with \"speaking request\" in subject line for easier organization : jeffersonbethke@gmail.com

download link to word document of poem: http://www.box.com/s/z3k53ec3ssbo800ppeld

Wanna start helping and serving Jesus in a practical way? checkout the company of the watch I am wearing in the video! They give 10-25% of all proceeds to non profits and the bands and faces are interchangeable! http://cruxwatches.com/?ap_id=cJB0922sEkjsn1a</media:description><media:keywords>jesus, love, religion, bible, christian, grace, mercy, god, spirit, faith, hate, like Gospel Word Holy</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=1IAhDGYlpqY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1IAhDGYlpqY/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:02\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1IAhDGYlpqY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1IAhDGYlpqY/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:01\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1IAhDGYlpqY/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:02\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1IAhDGYlpqY/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:03\' yt:name=\'end\'/><media:title type=\'plain\'>Why I Hate Religion, But Love Jesus || Spoken Word</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'244\'/><yt:uploaded>2012-01-11T03:14:37.000Z</yt:uploaded><yt:videoid>1IAhDGYlpqY</yt:videoid></media:group><gd:rating average=\'4.4688716\' max=\'5\' min=\'1\' numRaters=\'354709\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'161682\' viewCount=\'18591094\'/><yt:rating numDislikes=\'47099\' numLikes=\'307610\'/></entry><entry gd:etag=\'W/&quot;DE8CQn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:WUFSHzT2xuY</id><published>2012-01-30T17:10:14.000Z</published><updated>2012-02-09T05:54:23.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Autos\' label=\'Autos &amp; Vehicles\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super Bowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super Bowl XLVI\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super Bowl commercial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super Bowl spot\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Acura\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2013 cars\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jerry Seinfeld\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jay Leno\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Acura NSX\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'game day ad\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'game day commercial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Soup Nazi\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Munchkin\'/><title>\"Transactions\" Extended Version - 2012 Acura NSX Big Game Ad #JerrysNSX</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/WUFSHzT2xuY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=WUFSHzT2xuY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/WUFSHzT2xuY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/WUFSHzT2xuY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/WUFSHzT2xuY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/WUFSHzT2xuY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=WUFSHzT2xuY\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/WUFSHzT2xuY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>Acura</name><uri>http://gdata.youtube.com/feeds/api/users/xl79GCsb6-xhrdQuPgnuJA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/WUFSHzT2xuY/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'3812\'/></gd:comments><yt:hd/><media:group><media:category label=\'Autos &amp; Vehicles\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Autos</media:category><media:content url=\'http://www.youtube.com/v/WUFSHzT2xuY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'112\' yt:format=\'5\'/><media:content url=\'rtsp://v8.cache5.c.youtube.com/CnELENy73wIaaAnmxvY0H1JBWRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'112\' yt:format=\'1\'/><media:content url=\'rtsp://v4.cache3.c.youtube.com/CnELENy73wIaaAnmxvY0H1JBWRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'112\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>Acura</media:credit><media:description type=\'plain\'>Jerry Seinfeld is so excited about the new Acura NSX that he will stop at nothing to acquire the very first one. Check out the extended version of Acura\'s big game commercial. See what else Jerry would do for the first new NSX at www.acura.com. NSX projected debut in next three years. 
See - \"Munchkin\" http://www.youtube.com/watch?v=fZ_Xk9_tC2E
See - \"Sock Puppet Recap\" http://www.youtube.com/watch?v=f9rleBkA5kA  
#JerrysNSX</media:description><media:keywords>Super Bowl, Super Bowl XLVI, Super Bowl commercial, Super Bowl spot, Acura, 2013 cars, Jerry Seinfeld, Jay Leno, Acura NSX, game day ad, game day commercial, Soup Nazi, Munchkin</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=WUFSHzT2xuY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/WUFSHzT2xuY/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:56\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/WUFSHzT2xuY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/WUFSHzT2xuY/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:28\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/WUFSHzT2xuY/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:56\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/WUFSHzT2xuY/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:24\' yt:name=\'end\'/><media:title type=\'plain\'>\"Transactions\" Extended Version - 2012 Acura NSX Big Game Ad #JerrysNSX</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'112\'/><yt:uploaded>2012-01-30T17:10:14.000Z</yt:uploaded><yt:videoid>WUFSHzT2xuY</yt:videoid></media:group><gd:rating average=\'4.7349195\' max=\'5\' min=\'1\' numRaters=\'17821\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'8324\' viewCount=\'17004908\'/><yt:rating numDislikes=\'1181\' numLikes=\'16640\'/></entry><entry gd:etag=\'W/&quot;DUIERH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:pjyfMCTAqKU</id><published>2012-01-26T15:12:10.000Z</published><updated>2012-02-09T06:05:05.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Federer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nadal\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Australia\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Roger Federer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rafa\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rafael Nadal\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ricky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ponting\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cricket\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chris\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Fowler\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ESPN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'top\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'play\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SportsCenter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cheering\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cheer\'/><title>Incredible Ball Boy Catch - Aussie Open</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/pjyfMCTAqKU?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=pjyfMCTAqKU&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/pjyfMCTAqKU/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/pjyfMCTAqKU/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/pjyfMCTAqKU/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/pjyfMCTAqKU/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=pjyfMCTAqKU\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/pjyfMCTAqKU?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>ESPN</name><uri>http://gdata.youtube.com/feeds/api/users/iWLfSweyRNmLpgEHekhoAg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/pjyfMCTAqKU/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'11110\'/></gd:comments><yt:hd/><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/pjyfMCTAqKU?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'12\' yt:format=\'5\'/><media:content url=\'rtsp://v2.cache7.c.youtube.com/CnELENy73wIaaAmlqMAkMJ88phMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'12\' yt:format=\'1\'/><media:content url=\'rtsp://v8.cache2.c.youtube.com/CnELENy73wIaaAmlqMAkMJ88phMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'12\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>ESPN</media:credit><media:description type=\'plain\'>One of the ball boys makes an amazing catch during the Federer Nadal Semifinal match at the Australian Open. Then there was a cricket reference to Ricky Ponting, and the crowd goes crazy!</media:description><media:keywords>Federer, Nadal, Australia, Roger Federer, Rafa, Rafael Nadal, Ricky, Ponting, cricket, Chris, Fowler, ESPN, top, play, SportsCenter, cheering, cheer</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=pjyfMCTAqKU&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/pjyfMCTAqKU/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:06\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/pjyfMCTAqKU/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/pjyfMCTAqKU/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:03\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/pjyfMCTAqKU/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:06\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/pjyfMCTAqKU/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:09\' yt:name=\'end\'/><media:title type=\'plain\'>Incredible Ball Boy Catch - Aussie Open</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'12\'/><yt:uploaded>2012-01-26T15:12:10.000Z</yt:uploaded><yt:videoid>pjyfMCTAqKU</yt:videoid></media:group><gd:rating average=\'4.829856\' max=\'5\' min=\'1\' numRaters=\'39684\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'12955\' viewCount=\'15116775\'/><yt:rating numDislikes=\'1688\' numLikes=\'37996\'/></entry><entry gd:etag=\'W/&quot;DUEGR347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:Y1xs_xPb46M</id><published>2012-01-12T23:19:09.000Z</published><updated>2012-02-09T06:07:06.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'One\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Direction\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Thing\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Syco\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Pop\'/><title>One Direction - One Thing</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/Y1xs_xPb46M?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=Y1xs_xPb46M&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Y1xs_xPb46M/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Y1xs_xPb46M/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Y1xs_xPb46M/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Y1xs_xPb46M/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/Y1xs_xPb46M?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>OneDirectionVEVO</name><uri>http://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'allowed\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'denied\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/Y1xs_xPb46M/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'102898\'/></gd:comments><yt:hd/><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/Y1xs_xPb46M?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'198\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>OneDirectionVEVO</media:credit><media:description type=\'plain\'>One Thing is released 12th February in the UK. Click here to buy your copy from iTunes now! http://bit.ly/yu31vy

Music video by One Direction performing One Thing. (C) 2012 Simco Limited under exclusive license to Sony Music Entertainment UK Limited</media:description><media:keywords>One, Direction, Thing, Syco, Music, Pop</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=Y1xs_xPb46M&amp;feature=youtube_gdata_player\'/><media:restriction type=\'country\' relationship=\'allow\'>BD BE BF BG BA BB WF BM BN BO BH BI BJ BT JM BW WS BR BS BY BZ RU RW RS TL RE TM TJ RO TK GW GU GT GR GQ GP JP GY GF GE GD GB GA SV GN GM GL GI GH OM TN IL JO HR HT HU HK HN VE PR PS PW PT PY IQ PA PF PG PE PK PH PN PL PM ZM EH EE EG ZA EC IT VN SB ET SO ZW SA ES ER ME MD MG MA MC UZ MM ML MO MN MH MK MU MT MW MV MQ MP MS MR UG MY MX VU FR SH FI FJ FK FM FO NI NL NO NA NC NE NG NZ NP NR NU CK CI CH CO CN CM CL CA CG CF CD CZ CY CR CV CU SZ SY KG KE SR KI KH KN KM ST SK KR SI KP KW SN SM SL SC KZ KY SG SE SD DO DM DJ DK VG YE DZ US UY YT LB LC LA TV TW TT TR LK LI LV TO LT LU LR LS TH TF TG TD TC LY VA VC AE AD AG AF AI IS IR AM AL AO AN AQ AR AU AT IO IN TZ AZ IE ID UA QA MZ</media:restriction><media:thumbnail url=\'http://i.ytimg.com/vi/Y1xs_xPb46M/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:39\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Y1xs_xPb46M/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Y1xs_xPb46M/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:49.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Y1xs_xPb46M/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:39\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Y1xs_xPb46M/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:28.500\' yt:name=\'end\'/><media:title type=\'plain\'>One Direction - One Thing</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'198\'/><yt:uploaded>2012-01-12T23:19:09.000Z</yt:uploaded><yt:videoid>Y1xs_xPb46M</yt:videoid></media:group><gd:rating average=\'4.886223\' max=\'5\' min=\'1\' numRaters=\'174130\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'78211\' viewCount=\'14700179\'/><yt:rating numDislikes=\'4953\' numLikes=\'169177\'/></entry><entry gd:etag=\'W/&quot;DUEBQ347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:YVw7eJ0vGfM</id><published>2012-01-27T14:43:09.000Z</published><updated>2012-02-09T06:07:32.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by the content owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'David\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Guetta\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Turn\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Me\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'On\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'featuring\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nicki\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Minaj\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'feat\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Official\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'VEVO\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nothing\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'But\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'The\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Beat\'/><title>David Guetta - Turn Me On ft. Nicki Minaj</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/YVw7eJ0vGfM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=YVw7eJ0vGfM&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/YVw7eJ0vGfM/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/YVw7eJ0vGfM/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/YVw7eJ0vGfM/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/YVw7eJ0vGfM/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/YVw7eJ0vGfM?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>davidguettavevo</name><uri>http://gdata.youtube.com/feeds/api/users/1l7wYrva1qCH-wgqcHaaRg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'allowed\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'denied\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/YVw7eJ0vGfM/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'33574\'/></gd:comments><yt:hd/><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/YVw7eJ0vGfM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'211\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>davidguettavevo</media:credit><media:description type=\'plain\'>Download the hit single \"Turn Me On\" on iTunes: http://goo.gl/VF7Qp
Music video by David Guetta performing Turn Me On featuring Nicki Minaj.  (P) 2011 What A Music Ltd, Licence exclusive EMI Music France</media:description><media:keywords>David, Guetta, Turn, Me, On, featuring, Nicki, Minaj, feat, Official, HD, VEVO, Nothing, But, The, Beat</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=YVw7eJ0vGfM&amp;feature=youtube_gdata_player\'/><media:restriction type=\'country\' relationship=\'deny\'>DE JP</media:restriction><media:thumbnail url=\'http://i.ytimg.com/vi/YVw7eJ0vGfM/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:45.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/YVw7eJ0vGfM/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/YVw7eJ0vGfM/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:52.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/YVw7eJ0vGfM/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:45.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/YVw7eJ0vGfM/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:38.250\' yt:name=\'end\'/><media:title type=\'plain\'>David Guetta - Turn Me On ft. Nicki Minaj</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'211\'/><yt:uploaded>2012-01-27T14:43:09.000Z</yt:uploaded><yt:videoid>YVw7eJ0vGfM</yt:videoid></media:group><gd:rating average=\'4.8166857\' max=\'5\' min=\'1\' numRaters=\'127366\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'65714\' viewCount=\'14383818\'/><yt:rating numDislikes=\'5837\' numLikes=\'121529\'/></entry><entry gd:etag=\'W/&quot;DUICQH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:VhkDdayA4iA</id><published>2012-01-27T01:52:28.000Z</published><updated>2012-02-09T06:06:01.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Autos\' label=\'Autos &amp; Vehicles\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super Bowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super Bowl XLVI\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super Bowl commercial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Honda Super Bowl Commercial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ferris\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ferris Bueller\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ferris Bueller commercial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ferris Bueller car ad\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'80s movies\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Matthew Broderick\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'commercial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ad\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'advertisement\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'advertising\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'car\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cars\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CR-V\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CRV\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Honda CR-V\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Honda CRV\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'new\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'all new\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012 CR-V\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012 CRV\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New CR-V\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SUV\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Honda SUV\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Crossover\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Small SUV\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New York Giants\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New England Patriots\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'super bowl commercials\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'superbowl commercial\'/><title>Official 2012 Honda CR-V Game Day Commercial - \"Matthew\'s Day Off\" Extended Version</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/VhkDdayA4iA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=VhkDdayA4iA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VhkDdayA4iA/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VhkDdayA4iA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VhkDdayA4iA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VhkDdayA4iA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=VhkDdayA4iA\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/VhkDdayA4iA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>Honda</name><uri>http://gdata.youtube.com/feeds/api/users/22zQ9nBEk6KOjUWqR5XXZg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/VhkDdayA4iA/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'6436\'/></gd:comments><yt:hd/><media:group><media:category label=\'Autos &amp; Vehicles\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Autos</media:category><media:content url=\'http://www.youtube.com/v/VhkDdayA4iA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'145\' yt:format=\'5\'/><media:content url=\'rtsp://v1.cache2.c.youtube.com/CnELENy73wIaaAkg4oCsdQMZVhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'145\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache2.c.youtube.com/CnELENy73wIaaAkg4oCsdQMZVhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'145\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>Honda</media:credit><media:description type=\'plain\'>To celebrate the launch of the all-new 2012 CR-V, Honda brought Ferris Bueller\'s Day Off back in a big game commercial. We cast Matthew Broderick as himself, skipping out on a day of acting work and living it up in his all-new CR-V. Relive movie history with Honda\'s fresh twist and wonderful homage to this \'80s classic.

Think you\'re a true fan of Ferris Bueller\'s Day Off? We hid over two dozen references to the movie throughout the commercial. Some are obvious, some are VERY subtle. See how many you can find. #dayoff 

http://automobiles.honda.com
http://cr-v.honda.com
http://leaplist.honda.com
http://facebook.com/hondacrv</media:description><media:keywords>Super Bowl, Super Bowl XLVI, Super Bowl commercial, Honda Super Bowl Commercial, Ferris, Ferris Bueller, Ferris Bueller commercial, Ferris Bueller car ad, 80s movies, Matthew Broderick, commercial, ad, advertisement, advertising, car, cars, 2012, CR-V, CRV, Honda CR-V, Honda CRV, new, all new, 2012 CR-V, 2012 CRV, New CR-V, SUV, Honda SUV, Crossover, Small SUV, New York Giants, New England Patriots, super bowl commercials, superbowl commercial</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=VhkDdayA4iA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VhkDdayA4iA/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:12.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VhkDdayA4iA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VhkDdayA4iA/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:36.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VhkDdayA4iA/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:12.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VhkDdayA4iA/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:48.750\' yt:name=\'end\'/><media:title type=\'plain\'>Official 2012 Honda CR-V Game Day Commercial - \"Matthew\'s Day Off\" Extended Version</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'145\'/><yt:uploaded>2012-01-27T01:52:28.000Z</yt:uploaded><yt:videoid>VhkDdayA4iA</yt:videoid></media:group><gd:rating average=\'4.685307\' max=\'5\' min=\'1\' numRaters=\'40611\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'15223\' viewCount=\'13998056\'/><yt:rating numDislikes=\'3195\' numLikes=\'37416\'/></entry><entry gd:etag=\'W/&quot;DUIBR347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:6ntDYjS0Y3w</id><published>2012-01-18T21:39:20.000Z</published><updated>2012-02-09T06:05:56.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Autos\' label=\'Autos &amp; Vehicles\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'volkswagen\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'vw\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bark side\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the bark side\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'star wars ad\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'starwars\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the force ad\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'super bowl commercial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'super bowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Superbowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012 super bowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012 superbowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'super bowl ad\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'vw ad\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'vw super bowl ad\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'vw super bowl commercial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cars\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'commercials\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'automobiles\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'advertising\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ads\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'volkswagon\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Star Wars Dogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Darth Vader\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Vader\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Star Wars\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'The Force\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012 Super Bowl Commercial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'XLVI\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'46\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Volkswagen Super Bowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dog\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Automobile\'/><title>The Bark Side: 2012 Volkswagen Game Day Commercial Teaser</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/6ntDYjS0Y3w?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=6ntDYjS0Y3w&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/6ntDYjS0Y3w/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/6ntDYjS0Y3w/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/6ntDYjS0Y3w/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/6ntDYjS0Y3w/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=6ntDYjS0Y3w\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/most_popular/v/6ntDYjS0Y3w?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>Volkswagen</name><uri>http://gdata.youtube.com/feeds/api/users/5vFx0GahDIWLMFm5j2_JZA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/6ntDYjS0Y3w/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'9149\'/></gd:comments><yt:hd/><media:group><media:category label=\'Autos &amp; Vehicles\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Autos</media:category><media:content url=\'http://www.youtube.com/v/6ntDYjS0Y3w?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'64\' yt:format=\'5\'/><media:content url=\'rtsp://v4.cache7.c.youtube.com/CnELENy73wIaaAl8Y7Q0YkN76hMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'64\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache1.c.youtube.com/CnELENy73wIaaAl8Y7Q0YkN76hMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'64\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>Volkswagen</media:credit><media:description type=\'plain\'>A canine chorus barks a familiar tune. A canine chorus barks a familiar tune in our Game Day teaser. Watch our 2012 Game Day commercial—it will all make sense: http://vwoa.us/dogstrikesback</media:description><media:keywords>volkswagen, vw, bark side, the bark side, star wars ad, starwars, the force ad, super bowl commercial, super bowl, Superbowl, 2012 super bowl, 2012 superbowl, super bowl ad, vw ad, vw super bowl ad, vw super bowl commercial, dogs, cars, commercials, automobiles, advertising, ads, volkswagon, Star Wars Dogs, Darth Vader, Vader, Star Wars, The Force, 2012 Super Bowl Commercial, XLVI, 46, Volkswagen Super Bowl, dog, Automobile</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=6ntDYjS0Y3w&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/6ntDYjS0Y3w/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:32\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/6ntDYjS0Y3w/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/6ntDYjS0Y3w/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:16\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/6ntDYjS0Y3w/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:32\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/6ntDYjS0Y3w/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:48\' yt:name=\'end\'/><media:title type=\'plain\'>The Bark Side: 2012 Volkswagen Game Day Commercial Teaser</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'64\'/><yt:uploaded>2012-01-18T21:39:20.000Z</yt:uploaded><yt:videoid>6ntDYjS0Y3w</yt:videoid></media:group><gd:rating average=\'4.924344\' max=\'5\' min=\'1\' numRaters=\'83959\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:recorded>2012-01-18</yt:recorded><yt:statistics favoriteCount=\'45374\' viewCount=\'13878389\'/><yt:threed source=\'converted\'/><yt:rating numDislikes=\'1588\' numLikes=\'82371\'/></entry></feed>', now(), now())
