if (!Function.prototype.bindAsEventListener) {
	Function.prototype.bindAsEventListener = function() {
		var __method=this,args=arguments,object=args[0];
		return function(event) {var a = args;a[0]=(event || window.event);return __method.apply(object,a);}
	}
}
if (!Math.customRound) {
	Math.customRound = function (number, digits) {
		if (arguments.length == 1) var digits = 2;
		var d = Math.pow(10, digits);
		return parseInt(number * d) / d;
	}
}
if (typeof(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_73ef61807d')[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.replace(/"/g, "&quot;");// ";
					var title = jsonArr[i].title_esc + (this.ds.thumb_show_length?' (' + jsonArr[i].length_seconds + ')':'');
					var t = '<img src="' + jsonArr[i].thumbnail_url + '" alt="' + jsonArr[i].title_esc + '" title="' + title + '" />';
					if (this.ds.thumb_show_title || this.ds.thumb_show_author || this.ds.thumb_show_length || this.ds.thumb_show_rating || this.ds.thumb_show_description) {
						var at = '';
						if (this.ds.thumb_show_title)
							//at = '<a href="http://www.idesktop.tv/?watch=' + jsonArr[i].id + '" title="' + jsonArr[i].title + '" target="_blank">' + jsonArr[i].title + "</a>";
							at = '<span class="t">' + jsonArr[i].title + "</span>";
						if (this.ds.thumb_show_author) {
							at += '<span class="ah">' + (this.ds.thumb_show_labels?'<span class="lb">Author: </span>':'') + jsonArr[i].author + '</span>';
						}
						if (this.ds.thumb_show_length || this.ds.thumb_show_views) {
							at += '<span class="lv">';
							if (this.ds.thumb_show_length) at += (this.ds.thumb_show_labels?'<span class="lb">Length: </span>':'') +jsonArr[i].length_seconds;
							if (this.ds.thumb_show_length && this.ds.thumb_show_views) at += ' | ';
							if (this.ds.thumb_show_views) at += (this.ds.thumb_show_labels?'<span class="lb">Views: </span>':'') + this.formatCommasInt(jsonArr[i].view_count);
							at += '</span>';
						}
						if (this.ds.thumb_show_rating)
							at += '<span class="r">' + (this.ds.thumb_show_labels?'<span class="lb">Rating: </span>':'') + Math.customRound(jsonArr[i].rating_avg, 1) + "</span>";
						if (this.ds.thumb_show_description) {
							at += '<span class="d">' + jsonArr[i].description + "</span>";
						}
						t = t + '<div class="out" title="' + title + '"><div class="in">' + at + '</div></div>';
					}
					if (this.ds.mark_private && jsonArr[i].isprivate)
						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/73ef61807d/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.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 IDTVLBDataSource73ef61807d = {
	id: '73ef61807d', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 408, height: 396, pp: 12,
	rows: 3, cols: 4,
	plw: 500, plh: 420,
	createP: function () {this.p = new IDTVVWP(this); },
	plpl: 'center',
	only_public:true,mark_private:true,
	thumb_show_title : true, thumb_show_author : false,
	thumb_show_rating : false, thumb_show_views: false,
	thumb_show_length : false, thumb_show_description : false,
	thumb_show_labels : false,
	thumbnail_text: 'B',
	pldelta: 0,
data: {sid:1, loadToCache:false, total: 98, pgs:9, results: [{id:'7XzdZ4KcI8Y',title:'The Rocket Jump',author:'freddiew',real_length:'96',length_seconds:'01:36',rating_avg:'5',rating_count:'30730',view_count:'605066',description:'Like it? Save to - Favorites!<br /> <br /> Click to RT! http://bit.ly/RTRocketJump<br /> <br /> Journey with us through video game history as we witness the first ever rocket jump. My teammates are total noobs. That dude on the turret is also a total camper.<br /> <br /> The M249 airsoft prop generously provided by Evike.com!<br /> <br /> Special thanks to Kevin Klauber, Sherwin Kuo (for the sweet AT-4 prop), Lauren Haroutunian, and onedcm for providing his awesome trampoline for some greenscreen work.',tags:'rocket, jump, quake, arena, ctf, unreal, tournament, marathon, metroid, tf2, team, fortress, soldier, class, trick, shot, compilation, best, of, top, 10, killcam, splash, damage, crater, explosion, fire, vfx, freddy, freddyw, after, effects',thumbnail_url:'http://img.youtube.com/vi/7XzdZ4KcI8Y/default.jpg',upload_time:'1283351503',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/7XzdZ4KcI8Y/responses?v=2',ord:'0',isprivate:'',t:'v'}, {id:'30Nm_ECCVlE',title:'TICKLE EM TO DEATH!',author:'SHAYTARDS',real_length:'681',length_seconds:'11:21',rating_avg:'5',rating_count:'27605',view_count:'103391',description:'MY PANTS BAR! <br /> <br /> OUR WEBSITE<br /> http://www.shaycarl.com<br /> <br /> TWEETS<br /> <br /> Shay http://www.twitter.com/shaycarl<br /> <br /> Katilette http://www.twitter.com/katilette <br /> <br /> MY FACEBOOK!<br /> http://www.FaceBook.com/ShayCarlBook<br /> <br /> Subscribe to Mommytards YouTube channel.<br /> http://www.youtube.com/katilette',tags:'shaycarl, shaytards, katilette, new, office, furniture, back, to, school, tickle, torture, thumb, wars',thumbnail_url:'http://img.youtube.com/vi/30Nm_ECCVlE/default.jpg',upload_time:'1283391224',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/30Nm_ECCVlE/responses?v=2',ord:'1',isprivate:'',t:'v'}, {id:'YwtjihXqCKA',title:'Mystery Remix',author:'MysteryGuitarMan',real_length:'121',length_seconds:'02:01',rating_avg:'5',rating_count:'21667',view_count:'154663',description:'Watch my other videos:<br /> http://www.youtube.com/MysteryGuitarMan<br /> <br /> Mike Relm:<br /> http://www.youtube.com/relmvision<br /> <br /> My second channel:<br /> http://www.youtube.com/jp<br /> <br /> My T-Shirts:<br /> http://bit.ly/MGMshirts<br /> <br /> iPhone App:<br /> http://bit.ly/MGMiPhoneApp<br /> (or search for "MysteryGuitarMan" on android)<br /> <br /> Twitter\'s cool... right?<br /> http://www.twitter.com/MysteryGuitarM<br /> <br /> Facebook, too:<br /> http://apps.facebook.com/mysteryguitarman<br /> <br /> Send me things:<br /> <br /> Mystery Guitar Man<br /> PO Box 2966<br /> Hollywood, CA 90078',tags:'mystery, guitar, man, mysteryguitarman, mgm, joe, penna, jp, mike, relm, mikerelm, relmvision',thumbnail_url:'http://img.youtube.com/vi/YwtjihXqCKA/default.jpg',upload_time:'1283439138',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/YwtjihXqCKA/responses?v=2',ord:'2',isprivate:'',t:'v'}, {id:'r4pBfH5AAls',title:'BIG FAT LIAR!!!!!!',author:'sxephil',real_length:'350',length_seconds:'05:50',rating_avg:'4.9',rating_count:'20521',view_count:'361339',description:'CLICK DOWN HERE FOR ALL THE AWESOME SCHTUFF!!!<br /> <br /> <br /> WATCH MY CATFISH ANSWER VIDEO HERE!:<br /> http://bit.ly/9y5IPn<br /> <br /> Check out Today\'s new Personal Vlog:&acirc;€&uml;<br /> http://youtu.be/fj9GqMBUU7w<br /> <br /> Download the Official PhillyD iPhone App:<br /> http://bit.ly/91AXSF<br /> <br /> &acirc;€&uml;---------------------------------------------&acirc;€&uml;<br /> Get some new Nation Gear :)&acirc;€&uml;<br /> http://phillyd.spreadshirt.com&acirc;€&uml;<br /> --------------------------------------------<br /> <br /> StarCraft is a class:<br /> http://bit.ly/9poHfI<br /> <br /> Princess Di:<br /> http://bzfd.it/bft1qx<br /> <br /> Muslim PSA:<br /> http://bit.ly/9dlJQ6<br /> <br /> Conan announces his show:<br /> http://bit.ly/at6n8A<br /> <br /> Kingdom Hearts:<br /> http://bit.ly/9bUvv9<br /> <br /> Apple  Announcement:<br /> http://bit.ly/9Ir9PP<br /> <br /> Thank you to IAMRogue.com for sponsoring this video and egiving me the chance to give my viewers something coool.',tags:'philip, defranco, sxephil, catfish, starcraft, II, conan, apple',thumbnail_url:'http://img.youtube.com/vi/r4pBfH5AAls/default.jpg',upload_time:'1283380345',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/r4pBfH5AAls/responses?v=2',ord:'3',isprivate:'',t:'v'}, {id:'Ni8I_rUyasE',title:'POTTY POWER!',author:'SHAYTARDS',real_length:'672',length_seconds:'11:12',rating_avg:'4.9',rating_count:'15263',view_count:'479',description:'MY PANTS BAR! <br /> <br /> OUR WEBSITE<br /> http://www.shaycarl.com<br /> <br /> TWEETS<br /> <br /> Shay http://www.twitter.com/shaycarl<br /> <br /> Katilette http://www.twitter.com/katilette <br /> <br /> MY FACEBOOK!<br /> http://www.FaceBook.com/ShayCarlBook<br /> <br /> Subscribe to Mommytards YouTube channel.<br /> http://www.youtube.com/katilette',tags:'shaycarl, shaytards, get, out, of, debt, Dave, Ramsey, the, debtor, is, SLAVE, to, lender',thumbnail_url:'http://img.youtube.com/vi/Ni8I_rUyasE/default.jpg',upload_time:'1283469156',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Ni8I_rUyasE/responses?v=2',ord:'4',isprivate:'',t:'v'}, {id:'ZuYEd_iQHN4',title:'Double Rainbow All The Way to the Bank!!',author:'sxephil',real_length:'344',length_seconds:'05:44',rating_avg:'4.9',rating_count:'14519',view_count:'304',description:'CLICK DOWN HERE FOR ALL THE AWESOME SCHTUFF!!!<br /> <br /> <br /> <br /> Check out Today\'s new Personal Vlog:&acirc;€&uml;<br /> http://youtu.be/2WB_RZIwibI<br /> <br /> Download the Official PhillyD iPhone App:<br /> http://bit.ly/91AXSF<br /> <br /> &acirc;€&uml;---------------------------------------------&acirc;€&uml;<br /> Get some new Nation Gear :)&acirc;€&uml;<br /> http://phillyd.spreadshirt.com&acirc;€&uml;<br /> --------------------------------------------<br /> <br /> Study:  Babies spread like Rabies:<br /> http://bit.ly/agAwEF<br /> <br /> God Did Not Create the Universe:<br /> http://bit.ly/aIqXLL<br /> <br /> Double Rainbow Guy cashes out:<br /> http://bit.ly/bcb9OM<br /> <br /> Oil Rig explodes:<br /> http://bit.ly/cGUnEu<br /> <br /> Batman omfg:<br /> http://bit.ly/cw5V5q',tags:'Babies, God, Stephen, Hawking, Double, Rainbow, Batman, sxephil, philip, defranco',thumbnail_url:'http://img.youtube.com/vi/ZuYEd_iQHN4/default.jpg',upload_time:'1283464436',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/ZuYEd_iQHN4/responses?v=2',ord:'5',isprivate:'',t:'v'}, {id:'qPE3CJaBYuM',title:'SILLY BANDZ ARE SO STUPID! (8.31.10 - Day 488)',author:'CTFxC',real_length:'705',length_seconds:'11:45',rating_avg:'4.9',rating_count:'13748',view_count:'99866',description:'Go watch the new video, "Hypno-Dog!" at: http://www.youtube.com/watch?v=_ui7mE7Aev0<br /> <br /> ***OTHER AWESOME STUFF***<br /> We\'re on twitter (duhhhh) hehe:<br /> http://twitter.com/CharlesTrippy<br /> http://twitter.com/AlliSpeed<br /> <br /> Join Us On FACEBOOK:<br /> http://facebook.com/CharlesTrippyFriendCore<br /> <br /> Our Personal channels:<br /> http://youtube.com/CharlesTrippy<br /> http://youtube.com/Alli<br /> <br /> Our website:<br /> http://internetkilledtv.com<br /> ***************************<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> stuff to ignore:<br /> charlestrippy ctfxc alli zoey marley internet killed tv television girl gets girls stupid stupids dumbest tattoo tattoos 21st birthday party roflcopter hot is for haters cute puppy dogs funny college fsu parties canon 7d iphone apple car repair crash hypno dog hypnodog silly bands bandz',tags:'charlestrippy, ctfxc, alli, zoey, marley, internet, killed, tv, television, girl, gets, girls, stupid, stupids, dumbest, tattoo, tattoos, 21st, birthday, party, roflcopter, hot, is, for, haters, cute, puppy, dogs, funny, college, fsu, parties, canon, 7d, iphone, apple, car, repair, crash, hypno, dog, hypnodog, silly, bands, bandz',thumbnail_url:'http://img.youtube.com/vi/qPE3CJaBYuM/default.jpg',upload_time:'1283359233',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/qPE3CJaBYuM/responses?v=2',ord:'6',isprivate:'',t:'v'}, {id:'fj9GqMBUU7w',title:'Philip DeFranco vs. LOVE',author:'PhilipDeFranco',real_length:'439',length_seconds:'07:19',rating_avg:'5',rating_count:'11951',view_count:'99470',description:'So a constant question I get is about Love and marriage.  Its on my mind, and now on yours.<br /> <br /> Oh and be sure to watch todays PDS:<br /> http://youtube.com/sxephil',tags:'sxephil, vloggity, love, -phillyd111',thumbnail_url:'http://img.youtube.com/vi/fj9GqMBUU7w/default.jpg',upload_time:'1283368849',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/fj9GqMBUU7w/responses?v=2',ord:'7',isprivate:'',t:'v'}, {id:'tWP-TUlg7Nk',title:'HATERZ GONNA HATE',author:'shane',real_length:'289',length_seconds:'04:49',rating_avg:'5',rating_count:'11437',view_count:'305',description:'Thanks for Subscribing :) FACEBOOK me if ur bored http://www.facebook.com/shanedawsonfans',tags:'shanedawsontv, shanedawsontv2, shane, iphone, funny, video',thumbnail_url:'http://img.youtube.com/vi/tWP-TUlg7Nk/default.jpg',upload_time:'1283461694',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/tWP-TUlg7Nk/responses?v=2',ord:'8',isprivate:'',t:'v'}, {id:'NvTyX-QdqYI',title:'WTF! Justin & Miley in Grease???!  - Taylor Lautner Push Up Contest  - The Rachel ZZZoe Project',author:'WHATTHEBUCKSHOW',real_length:'287',length_seconds:'04:47',rating_avg:'4.9',rating_count:'11115',view_count:'67012',description:'CLICK HERE TO EXPAND<br /> New Vlog: <br /> http://www.youtube.com/watch?v=8t1o3N24k2g<br /> <br /> Please RATE "Thumbs Up"!<br /> Leave a comment!<br /> Fave and Share with Friends!<br /> I hope you Subscribe for MORE!<br /> THANK YOU!!!!!<br /> <br /> ______<br /> <br /> Comment Questions of the Day:<br /> Answer Any or All!!!<br /> <br /> 1. Would you want to see a Grease Remake with Justin Bieber and Miley Cyrus? WHO should star?<br /> <br /> 2. Do you watch the Rachel Zoe Project on Bravo? <br /> <br /> 3  Who is your favorite Real Housewife of New Jersey? Did you watch the scary reunion?<br /> <br /> BONUS:<br /> What Fall shows are you MOST LOOKING FORWARD TO??? Reality and Scripted! <br /> Let me know what you will be watching!<br /> <br /> <br /> _____<br /> <br /> <br /> <br /> GET BUCKED!<br /> What the Buck Show: SUBSCRIBE!<br /> http://youtube.com/buck<br /> Personal Buck Videos: SUBSCRIBE!<br /> http://youtube.com/peron75<br /> Additional Buck Shows:<br /> Live Shows! Thurs 10pm Eastern:<br /> http://www.blogtv.com/People/buckholl...<br /> Follow Buck on Twitter:<br /> http://twitter.com/buckhollywood<br /> Friend Buck on Facebook:<br /> http://www.facebook.com/buckhollywood<br /> <br /> <br /> End song:<br /> Diablo by Simon Curtis<br /> Free Download at:<br /> http://simon-curtis.com/',tags:'Justin, Bieber, Miley, Cyrus, Grease, remake, movie, Cheryl, Cole, Susan, Boyle, Taylor, Lautner, RV, push, up, contest, Rachel, Zoe, Project, Snore, Real, Housewives, of, New, Jersey, DC, Teresa, flips, out, on, Danielle, What, the, Buck, Michael, Buckley, YouTube, celebrity, gossip, entertainment, news, funny, spoof',thumbnail_url:'http://img.youtube.com/vi/NvTyX-QdqYI/default.jpg',upload_time:'1283359005',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/NvTyX-QdqYI/responses?v=2',ord:'9',isprivate:'',t:'v'}, {id:'kg_8mPoloBo',title:'Call of Duty: Black Ops - Wager Match Trailer',author:'CALLOFDUTY',real_length:'184',length_seconds:'03:04',rating_avg:'4.8',rating_count:'10518',view_count:'294772',description:'Call of Duty: Black Ops - Wager Match Trailer<br /> <br /> Multiplayer Revealed<br /> <br /> On September 1st, we held our highly anticipated, global hands-on multiplayer press event in Los Angeles. At the event, we introduced a variety of new features to expand on Call of Duty\'s awesome multiplayer experience.  Wager Match is a brand new multiplayer game mode.  Watch the trailer now.<br /> <br /> Along with Wager Matches, we introduced several other new features.  Customize your character and weapon to levels never before seen in a Call of Duty game.  Create the perfect insignia in the new Emblem Editor.  Direct epic gameplay videos in Theater Mode.  And much more.  Stay tuned for more in-depth information about these new features.<br /> <br /> *The wager game mode depicted and discussed in this video is for entertainment purposes only.  COD Points have no monetary value and may be used for in-game purposes only.',tags:'Wager, matches, customize, character, weapon, emblem, editor, theater, mode, COD, black, ops, call, of, duty, mp, online, live, match, multiplayer, fps, yt:quality=high, video, game, xbox, 360, xbox360, microsoft, playstation3, ps3, playstation, sony, computer, entertainment, scea, soe, pc, steam, activision, treyarch, infinity, ward, modern, warfare, first, person, shooter, new, exclusive, gametrailers, tv, Vietnam, 2010',thumbnail_url:'http://img.youtube.com/vi/kg_8mPoloBo/default.jpg',upload_time:'1283388752',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/kg_8mPoloBo/related?v=2',ord:'10',isprivate:'',t:'v'}, {id:'oPC-isxrhTs',title:'America:  Mosque or Mausoleum?',author:'TheAmazingAtheist',real_length:'329',length_seconds:'05:29',rating_avg:'4.8',rating_count:'10079',view_count:'59369',description:'In response to:<br /> http://www.youtube.com/watch?v=oJQ4bwGPRuk<br /> <br /> Video Directed by Cody Weber:<br /> http://www.iamcodyweber.com',tags:'America, Mosque or Mausoleum, TheAmazingAtheist, Cody Weber, Pat Condel',thumbnail_url:'http://img.youtube.com/vi/oPC-isxrhTs/default.jpg',upload_time:'1283392073',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/oPC-isxrhTs/responses?v=2',ord:'11',isprivate:'',t:'v'}]},
initialize: function () {this.createP()}

};
var IDTVLBDataSource73ef61807dIF = function () {IDTVLBDataSource73ef61807d.initialize.apply(IDTVLBDataSource73ef61807d, []);};
if (document.getElementById('IDTVP_73ef61807d'))
	IDTVLBDataSource73ef61807dIF ();
else if (window.addEventListener)
	window.addEventListener("load", IDTVLBDataSource73ef61807dIF, true);
else
	window.attachEvent("onload", IDTVLBDataSource73ef61807dIF);