if (!Function.prototype.bindAsEventListener) {
	Function.prototype.bindAsEventListener = function() {
		var __method = this, args = $A(arguments), object = args.shift();
		return function(event) {
			return __method.apply(object, [event || window.event].concat(args));
		}
	}
}
var $A = Array.from = function(iterable) {
	if (!iterable) return [];
	if (iterable.toArray) {
		return iterable.toArray();
	} else {
		var results = [];
		for (var i = 0; i < iterable.length; i++)
			results.push(iterable[i]);
		return results;
	}
}
if (!Math.customRound) {
	Math.customRound = function (number, digits) {
		if (arguments.length == 1) var digits = 2;
		var d = Math.pow(10, digits);
		return parseInt(number * d) / d;
	}
}
if (typeof(IDTVVWP) == "undefined") {
	IDTVVWP = function () {this.initialize.apply(this, arguments);};
	IDTVVWP.prototype = {
		frame: null,
		initialize: function (ds) {

			this.ds = ds;
			this.element = document.getElementById('IDTVP_' + this.ds.id);
			if (!this.element && document.getElementsByClassName)
				try {
					this.element = document.getElementsByClassName ('idtv_7a72c3d9cb')[0];
				} catch(e) {}
			if (!this.element) { alert ('The iDesktop.tv video wall is not not embedded properly!'); return;}
			this.element.innerHTML = '<div class="idtv_' + this.ds.id + '"><div class="idtv_inres"></div><div class="idtv_bb">' +
				'<div class="idtv_btn_prev"></div><div class="idtv_btn_next"></div><div class="idtv_bb_pages"></div></div></div>';
			var divs = this.element.getElementsByTagName('div');
			this.elementout = divs[0];
			this.elementin = divs[1];
			this.btn_prev = divs[3];
			this.btn_next = divs[4];
			this.pagers_area = divs[5];
			if (this.ds.data.error) {
				this.elementin.innerHTML = '<div style="text-align:center">' + this.ds.data.error + '</div>';
			} else {
				this.btn_prev.onclick = this.prevP.bindAsEventListener(this);
				this.btn_next.onclick = this.nextP.bindAsEventListener(this);
				if (this.ds.only_public) { // go trough ds.data.results and remove all private videos
					var newdata = new Array();
					for (var i = 0; i < this.ds.data.results.length; i ++)
						if (!this.ds.data.results[i].isprivate)
							newdata.push(this.ds.data.results[i]);
					this.ds.data.results = newdata;
				}
				this.results = new Array();
				var jsonArr = this.ds.data.results;
				this.page = 0; this.resc = jsonArr.length;
				this.maxpage = Math.ceil(this.resc/this.ds.pp) ;
				for (var i = 0, n = this.resc; i < n; i ++) {
					if (this.ds.only_public && jsonArr[i].isprivate) continue;
					var nr = document.createElement('div');
					nr.className = 'idtv_res';
					if ((i % this.ds.cols + Math.floor(i / this.ds.cols)) % 2) nr.className += ' alt';
					jsonArr[i].title_esc = (jsonArr[i].title ? jsonArr[i].title.replace(/"/g, "&quot;") : '');  // comment only to fix code coloring "
					var title = jsonArr[i].title_esc + (this.ds.thumb_show_length && jsonArr[i].length_seconds ?' (' + jsonArr[i].length_seconds + ')':'');
					var t = '<img src="' + jsonArr[i].thumbnail_url + '" alt="' + jsonArr[i].title_esc + '" title="' + title + '" />';
					if (this.ds.thumb_show_title || this.ds.thumb_show_author || this.ds.thumb_show_length || this.ds.thumb_show_rating || this.ds.thumb_show_description) {
						var at = '';
						if (this.ds.thumb_show_title)
							//at = '<a href="http://www.idesktop.tv/?watch=' + jsonArr[i].id + '" title="' + jsonArr[i].title + '" target="_blank">' + jsonArr[i].title + "</a>";
							at = '<span class="t">' + (jsonArr[i].title ? jsonArr[i].title : '') + "</span>";
						if (this.ds.thumb_show_author) {
							at += '<span class="ah">' + (this.ds.thumb_show_labels?'<span class="lb">Author: </span>':'') + (jsonArr[i].author ? jsonArr[i].author : '') + '</span>';
						}
						if (this.ds.thumb_show_length || this.ds.thumb_show_views) {
							at += '<span class="lv">';
							if (this.ds.thumb_show_length) at += (this.ds.thumb_show_labels?'<span class="lb">Length: </span>':'') + (jsonArr[i].length_seconds ? jsonArr[i].length_seconds : '');
							if (this.ds.thumb_show_length && this.ds.thumb_show_views) at += ' | ';
							if (this.ds.thumb_show_views) at += (this.ds.thumb_show_labels?'<span class="lb">Views: </span>':'') + (jsonArr[i].view_count ? this.formatCommasInt(jsonArr[i].view_count) : '');
							at += '</span>';
						}
						if (this.ds.thumb_show_rating)
							at += '<span class="r">' + (this.ds.thumb_show_labels?'<span class="lb">Rating: </span>':'') + (jsonArr[i].rating_avg ? Math.customRound(jsonArr[i].rating_avg, 1) : '') + "</span>";
						if (this.ds.thumb_show_description) {
							at += '<span class="d">' + (jsonArr[i].description ? jsonArr[i].description : '') + "</span>";
						}
						t = t + '<div class="out" title="' + title + '"><div class="in">' + at + '</div></div>';
					}
					if (this.ds.mark_private && jsonArr[i].isprivate)
						nr.innerHTML += '<div class="private_mark">PRIVATE</div>';
					nr.innerHTML += t;
					this.elementin.appendChild(nr);
					nr.style.display = 'none';
					this.results.push(nr);
					nr.onclick = this.onresclick.bindAsEventListener(this, i);
				}
				this.showRes();
			}
			var f = document.createElement('iframe');
			f.src = "http://www.idesktop.tv/embed/7a72c3d9cb/utr.html?r=" + document.location;
			f.style.cssText = 'width:0;height:0;border:none;';
			f.frameborder = f.frameBorder = f.border = "0";
			this.element.appendChild(f);
		},
		onresclick: function (event,i) {
			var elem = event.target || event.srcElement;
			if (elem.tagName == 'A') return;
			if (this.ds.plpl == "newwin") {
				var loaded = false;
				if (this.frw) {
					try {
						this.frw.Player.playlist.selectItem(i);
						this.frw.Player.playlist.playSelected();
						loaded = true;
					} catch(e) {
						loaded = false;
					}
				}
				if (!loaded) {
					this.frw = window.open ('http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+this.ds.data.results[i].id, 'idtvwin', 'width=' + this.ds.plw + ',height=' + this.ds.plh);
				}
				return;
			}
			if (!this.frame) {
				this.plclbtn = document.createElement('img');
				this.plclbtn.src = this.ds.clbtnsrc;
				this.plclbtn.onclick = this.closeplr.bindAsEventListener(this);
				this.plclbtn.className = 'idtvp_clbtn';
				this.frameholder = document.createElement('div');
				this.frameholder.id = 'idtvpfh' + this.ds.id;
				this.frame = document.createElement('iframe');
				this.frame.id = 'idtvpf' + this.ds.id;
				this.frame.frameborder = this.frame.frameBorder = this.frame.border = "0";
				try {
					document.body.appendChild(this.frameholder);
					this.ba = true;
				} catch (e) {
					this.elementout.appendChild(this.frameholder);
					this.ba = false;
				}
				this.frameholder.appendChild(this.plclbtn);

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

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

var IDTVLBDataSource7a72c3d9cb = {
	id: '7a72c3d9cb', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 400, height: 230, pp: 2,
	rows: 1, cols: 2,
	plw: 500, plh: 420,
	createP: function () {
		if (this.reverse_playlist) this.data.results = this.data.results.reverse();
		this.p = new IDTVVWP(this);
	},
	plpl: 'center',
	only_public:true,mark_private:true,
	thumb_show_title : true, thumb_show_author : false,
	thumb_show_rating : false, thumb_show_views: false,
	thumb_show_length : true, thumb_show_description : false,
	thumb_show_labels : false,
	thumbnail_text: 'B',
	reverse_playlist: false,
	pldelta: 0,
		data: {results: [{id:'ULLHYmz98P0',length_seconds:'00:47',comment_count:'503',author:'RussiaToday',title:'BP shows Oil Spill Live Feed as slick scale estimates questioned',description:'Live video feed of the Gulf of Mexico oil leak has been posted online on Thursday. Oil company BP has conceded that more oil is gushing into the Gulf than it had estimated after several scientists watching the video said they believe the leak is higher than official figures.',rating_avg:'4.267606',rating_count:'71',view_count:'55586',favorite_count:'32',tags:'Mississippi, Louisiana, wetlands, oil spill live feed, British Petroleum BP, oil emergency panel commission, RT, bp oil leak, oil spill, environmental disaster, Halliburton, Transocean, Senate, Gulf coast oil spill 2010, oil rig fire video, Deepwater Horizon, deepwater horizon fire, deep water horizon, US Coast Guard, Louisiana coast rig, oil rig blast, rig explosion, oil spill Gulf of Mexico, US catastrophe disaster, oil wildlife, drill baby drill',upload_time:'1274457272',thumbnail_url:'http://img.youtube.com/vi/ULLHYmz98P0/default.jpg',isprivate:''},{id:'Oo8pq4LjtQ8',length_seconds:'05:42',comment_count:'11',author:'FoxNewsChannel',title:'No Freedom of the Press?',description:'Bernie Goldberg on White House cutting off reporter access to Supreme Court nominee Elena Kagan and her family',rating_avg:'5.0',rating_count:'12',view_count:'226',favorite_count:'2',tags:'AmericaLive, Megyn Kelly, Bernie Goldberg, media access, Supreme Court nominee, Elena Kagan',upload_time:'1273867275',thumbnail_url:'http://img.youtube.com/vi/Oo8pq4LjtQ8/default.jpg',mid:'307723'},{id:'KrUSZETNDQE',title:'Dark Ash No Fly Zone',author:'moorishbrooklyn',length_seconds:'01:06',rating_avg:'0',rating_count:'',view_count:'106',description:'The symbolic shut down continues * Phoenix Online Book Store: Rise From The Mental, Physical &amp;amp;amp; Spiritual Ashes - astore.amazon.com * Improve Your Business &amp;amp;amp; Entrepreneur Skills - bit.ly * Moorish Brooklyn Blogspot Page - moorishbrooklynintelligence.blogspot.com * Moorish Brooklyn Facebook Page - http * Learn About Law, Civics, Nationality &amp;amp;amp; Ancient Global History - rvbeypublications.com *Never pay over $8.99 for a music album ever again, singles also available - http * Discounts On DVD, Blu-ray, HD DVD, VHS, Video On Demand In All Genres - bit.ly',tags:'Iceland, ice, land, volcano, no, fly, zone, erupt, erupts, eruption, lava, lavas, dust, dusts, cloud, black, dark, white, cloudy, air, traffic, Europe, airway, airways',thumbnail_url:'http://img.youtube.com/vi/KrUSZETNDQE/default.jpg',upload_time:'1274029385',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/KrUSZETNDQE/responses?v=2',t:'v',mid:'307724'},{id:'LtzAwo1HU2w',length_seconds:'04:27',comment_count:'117',author:'bravenewfoundation',title:'Mother\'s Day for Peace',description:'http://mothersdayforpeace.com<br /><br />This year, Brave New Foundation is remembering and honoring the origins of Mother\'s Day in this short online video.  <br /><br />Through the power of compassion and womanhood, we hope to work towards peace.',rating_avg:'4.7237763',rating_count:'286',view_count:'164851',favorite_count:'267',tags:'Mother\'s, day, peace, iraq, war, soldiers, kids, children, Felicity, huffman, Vanessa, Williams, robert, greenwald, brave, new',upload_time:'1178326869',thumbnail_url:'http://img.youtube.com/vi/LtzAwo1HU2w/default.jpg',mid:'307725'},{id:'XLiqvZOP8TY',length_seconds:'01:03',comment_count:'',author:'AlJazeeraEnglish',title:'US oil spill explained',description:'Al Jazeera looks at what engineers are facing in trying to stem the flow of oil.',rating_avg:'4.3637395',rating_count:'1765',view_count:'383726',favorite_count:'451',tags:'americasnews, aljazeera, US, oil, spill, BP, Gulf, Mexico',upload_time:'1272764720',thumbnail_url:'http://img.youtube.com/vi/XLiqvZOP8TY/default.jpg',mid:'307726'},{id:'9x8ZlA5BFuA',length_seconds:'03:11',comment_count:'',author:'ABCNews',title:'The Conversation: A Generation of Debt?',description:'Sharyn Alfonsi taks to Anya Kamenetz about the economic challenges of Gen Y.  For more, click here: More &amp;amp;amp;amp;amp;quot;World News&amp;amp;amp;amp;amp;quot; Stories',rating_avg:'5.0',rating_count:'1',view_count:'174',favorite_count:'2',tags:'abc news, news, abc, The Conversation, Sharyn Alfonsi, Anya Kamenetz, DIY U, Generation Debt, College, Paying for Education, Education, Higher Learning, Cost of Tuition, Cos',upload_time:'1272304922',thumbnail_url:'http://img.youtube.com/vi/9x8ZlA5BFuA/default.jpg',mid:'307727'},{id:'0hAa6BogYTY',length_seconds:'00:22',comment_count:'28',author:'carneyUGVC',title:'Everybody Wins - Autism Awareness Month',description:'www.autismspeaks.sharethemic.org<br /><br />Sixteen bands raise awareness for autism. Check out this music video competition, and follow the link below to sign up and contribute.',rating_avg:'4.6734695',rating_count:'49',view_count:'868',favorite_count:'0',tags:'autism speaks, autism awareness month, share mic, adam 812, celeste. charm face, orion experience, disco ensemble, land of talk, the raa, portugal. the man, kyle cousins, goodnight bravado, that one guy, the faint, tokyo police club, forbidden fruit, zak smith',upload_time:'1271803158',thumbnail_url:'http://img.youtube.com/vi/0hAa6BogYTY/default.jpg',mid:'307728'},{id:'P2M0HxyyusI',length_seconds:'02:23',comment_count:'182',author:'ReutersVideo',title:'Obama touts green jobs on Earth Day',description:'The U.S. President called on Congress to pass comprehensive energy and climate change legislation to reduce U.S. oil imports and fight global warming.',rating_avg:'3.1551723',rating_count:'58',view_count:'7008',favorite_count:'9',tags:'environment, Reuters, Obama, Earth Day',upload_time:'1240438046',thumbnail_url:'http://img.youtube.com/vi/P2M0HxyyusI/default.jpg',mid:'307729'},{id:'kAE8Zl27rWA',length_seconds:'02:12',comment_count:'',author:'repoweramerica',title:'Earth Day Remix',description:'http://www.repoweramerica.org/join <br /><br />Supporters from all across the country joined hip hop legend DJ Biz Markie to celebrate the 40th anniversary of Earth Day by recording a clean energy remix of his classic song,Just a Friend -- and some of our staff couldn\'t resist either!<br /><br />With our planet facing a generational challenge and our leaders falling far short in their response to the urgency of the climate crisis, its easy to succumb to doom and gloom. But each of us came to this movement because of the passion we find in working together to build a sustainable future for ourselves, our children and our grandchildren.<br /><br />*Special thanks to Biz Markie, BarelyPolitical.com, Mark Douglas, Amber Lee Ettinger, DJ Mike Relm and DeStorm Power.',rating_avg:'4.380435',rating_count:'828',view_count:'112525',favorite_count:'519',tags:'Climate, change, global, warming, clean, energy, earth, day, wind, power, solar, water, planet, obama, senate, bill, legislation, repower, america, biz, markie, hip, hop, remix, oldschool, obamagirl, amber, barelypolitical, dj, mike, relm, destorm, mark, douglas, lee, ettinger, save, world, grassroots, al, gore, college, students, best, cool, win, rap, just, friend, you, got, what, need, alien, hot, warm, music, video',upload_time:'1271892248',thumbnail_url:'http://img.youtube.com/vi/kAE8Zl27rWA/default.jpg',mid:'307730'},{id:'6sy75CUra8U',length_seconds:'03:31',comment_count:'0',author:'FoxBusinessNetwork',title:'Slow Growth in Job Market Expected?',description:'MIG Bank Chief Economist Bill Hubard on the expectations of positive, but gradual pace of job growth.',rating_avg:'',rating_count:'',view_count:'7',favorite_count:'0',tags:'MIG Bank, Chief Economist, Bill Hubard, markets, earnings, economy, unemployment, jobs, growth, recovery',upload_time:'1271334683',thumbnail_url:'http://img.youtube.com/vi/6sy75CUra8U/default.jpg',mid:'307731'},{id:'ke_Y_khxBRU',length_seconds:'02:06',comment_count:'22',author:'AssociatedPress',title:'AP Interview: Inside Obama\'s College Loan Reform',description:'In an interview with The Associated Press, Education Secretary Arne Duncan breaks down the changes to the college student loan overhaul signed into law by President Barack Obama.  (March 30)',rating_avg:'3.5',rating_count:'12',view_count:'427',favorite_count:'4',tags:'Obama-Education',upload_time:'1269974282',thumbnail_url:'http://img.youtube.com/vi/ke_Y_khxBRU/default.jpg',mid:'307732'},{id:'9H3sb0Itjpk',length_seconds:'10:39',comment_count:'',author:'PBSNewsHour',title:'Jobs Report Hints Economy Could Be Inching Toward Recovery',description:'A new economic report showed March had the largest increase in new jobs in three years, but the unemployment rate held steady. Judy Woodruff talks to two economists about what those numbers could mean for the economic recovery.',rating_avg:'4.2',rating_count:'5',view_count:'155',favorite_count:'0',tags:'jobs, economy, increase, economic, report, unemployment, recovery',upload_time:'1270254637',thumbnail_url:'http://img.youtube.com/vi/9H3sb0Itjpk/default.jpg',mid:'307733'},{id:'wQ5CkmvOq44',length_seconds:'03:05',comment_count:'11',author:'PBS',title:'Tavis Smiley\'s Video Blog - Evaluating the Healthcare Bill | PBS',description:'Tavis discusses both the good and the bad regarding the newly passed healthcare bill.<br /><br />Check out Tavis Smiley on PBS. For more information, see http://www.pbs.org/kcet/tavissmiley/voices/tavis-video-blog/',rating_avg:'4.8461537',rating_count:'13',view_count:'1363',favorite_count:'3',tags:'Tavis Smiley, President Obama, Barack Obama, Health Care, Healthcare, Bill, Congress, Senate, Democrats, Republicans, Take 2, Video Blog, Behind the Scenes, PBS',upload_time:'1269477634',thumbnail_url:'http://img.youtube.com/vi/wQ5CkmvOq44/default.jpg',mid:'307734'},{id:'m7Rv6G_8q90',length_seconds:'01:52',comment_count:'16',author:'AssociatedPress',title:'Health Professionals Weigh in on Reform Passage',description:'People who work in different segments of the health care field give their opinions about the newly-passed reform bill which is awaiting President Barack Obama\'s signature. (March 22)',rating_avg:'4.7777777',rating_count:'9',view_count:'305',favorite_count:'3',tags:'health_care_overhaul',upload_time:'1269279622',thumbnail_url:'http://img.youtube.com/vi/m7Rv6G_8q90/default.jpg',mid:'307735'},{id:'uNR_6UuVl4s',length_seconds:'07:14',comment_count:'0',author:'CBS',title:'France: \'Best\' Health Care?',description:'The French health care system has been dubbed &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;quot;the best in the world.&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;quot; David Turecamo finds out why the French can afford to get sick.',rating_avg:'4.3969297',rating_count:'456',view_count:'47549',favorite_count:'427',tags:'sunday, morning, cbs, france, health, care, best, in, the',upload_time:'1225042630',thumbnail_url:'http://img.youtube.com/vi/uNR_6UuVl4s/default.jpg',mid:'307736'},{id:'oKHQJc5mG8Y',length_seconds:'04:36',comment_count:'375',author:'NationalGeographic',title:'Hangovers vs. Health',description:'Partying may feel good when you are in your twenties, but there is a big price to pay later.<br /><br />Inside the Living Body: <br />SUN SEPTEMBER 16 8P et/pt : <br />http://channel.nationalgeographic.com/channel/video/?source=4003',rating_avg:'4.6340055',rating_count:'347',view_count:'105958',favorite_count:'538',tags:'inside, living, body, parties, health, alcohol, smoking, hangover',upload_time:'1189085262',thumbnail_url:'http://img.youtube.com/vi/oKHQJc5mG8Y/default.jpg',mid:'307737'},{id:'PUb6xR04I6Q',length_seconds:'01:18',comment_count:'1',author:'AFP',title:'US hands over detention facility to Iraqi control',description:'The US military handed over one of its two remaining detention facilities to Iraqi authorities on Monday, further winding down its operations as it prepares a withdrawal of combat troops. Transfer of the Camp Taji facility, a 107-million-dollar compound that can hold up to 5,600 prisoners and is located about 25 kilometres (15 miles) north of Baghdad, came in a ceremony in which the US official in charge of prisons praised Iraqi staff. Duration: 01:16',rating_avg:'',rating_count:'',view_count:'151',favorite_count:'1',tags:'WEB, IRAQ, US, MILITARY, PRISON',upload_time:'1268674101',thumbnail_url:'http://img.youtube.com/vi/PUb6xR04I6Q/default.jpg',mid:'307738'},{id:'ZBebv3Re3HU',length_seconds:'01:51',comment_count:'3',author:'AFP',title:'Iraqis head to the polls despite violence',description:'Iraqis are preparing to vote in their country\'s general election. It\'s the second time they\'ll cast their ballot in a parliamentary poll since the fall of Saddam Hussein in 2003. Duration:&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;Acirc;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;nbsp;01:51.',rating_avg:'5.0',rating_count:'2',view_count:'109',favorite_count:'0',tags:'WEB, IRAQ, VOTE',upload_time:'1267893273',thumbnail_url:'http://img.youtube.com/vi/ZBebv3Re3HU/default.jpg',mid:'307739'},{id:'MJdMD0cIUaY',length_seconds:'01:23',comment_count:'2',author:'bullshot2005',title:'US Unemployment Rate Feb 2010',description:'CNN World Business Today Marr5 2010<br />Colleen McEdwards reports.<br />US Jobless rate on Feb stable at 9.7.<br />Fewer job cut than expected.',rating_avg:'3.0',rating_count:'1',view_count:'35',favorite_count:'0',tags:'CNN, WBT, Mar6, 2010',upload_time:'1267876715',thumbnail_url:'http://img.youtube.com/vi/MJdMD0cIUaY/default.jpg',mid:'307740'},{id:'955WMz62O9U',length_seconds:'03:10',comment_count:'5',author:'monkeyseevideos',title:'Cleaning Braces-Proper Brushing Technique',description:'To view the next video in this series click: http://www.monkeysee.com/play/13696 Dr. Maulik demonstrates and explains how to clean your teeth with braces.  He discusses the proper way to brush, floss and care for your braces.',rating_avg:'5.0',rating_count:'7',view_count:'873',favorite_count:'1',tags:'clean, care, braces, brush, floss, Wax, proxy, dental, dentist, orth, orthodontist, timer, minutes, front, back, effects, avoid, metal, pain',upload_time:'1240508174',thumbnail_url:'http://img.youtube.com/vi/955WMz62O9U/default.jpg',mid:'307741'},{id:'5s_xG7vp1fQ',length_seconds:'01:20',comment_count:'5',author:'AssociatedPress',title:'AP Top Stories',description:'Here\'s the latest news for Monday, March 1: Chilean earthquake damage; Power outages in the Northeast; Closing ceremony at Winter Olympics; Canadian hockey team takes home gold.',rating_avg:'4.3333335',rating_count:'6',view_count:'866',favorite_count:'0',tags:'minuteworld',upload_time:'1267448520',thumbnail_url:'http://img.youtube.com/vi/5s_xG7vp1fQ/default.jpg',mid:'307742'},{id:'MEN-4QnhOrA',length_seconds:'08:27',comment_count:'0',author:'wavy',title:'Tax Tuesday: Education Refunds',description:'Tax Tuesday: Education Refunds',rating_avg:'',rating_count:'',view_count:'8',favorite_count:'0',tags:'none',upload_time:'1266344258',thumbnail_url:'http://img.youtube.com/vi/MEN-4QnhOrA/default.jpg',mid:'307743'},{id:'9vh9JcMXMr0',length_seconds:'01:49',comment_count:'',author:'IRSvideosASL',title:'Tax Tips: Earned Income Tax Credit - January 2010 (ASL, Captions &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp; Voice Over)',description:'The Earned Income Tax credit can mean a bigger refund for qualified taxpayers - watch this video for all the details.',rating_avg:'',rating_count:'',view_count:'1404',favorite_count:'3',tags:'eitc, earned income tax credit, tax, taxes, irs, internal revenue service, working poor, economy, bad economy, poor economy, job loss, income loss, layoff, fire, fired, job cuts, irs.gov, deaf, ASL, captions, captioning, captioned, American Sign Language, vlog, ASL videos.',upload_time:'1264540290',thumbnail_url:'http://img.youtube.com/vi/9vh9JcMXMr0/default.jpg',mid:'307744'},{id:'KXT0uaiwt4Y',length_seconds:'01:14',comment_count:'38',author:'itnnews',title:'Amateur video of Iran protest rally',description:'Amateur video of protests by the Iranian opposition in Tehran on the 31st anniversary of the Islamic revolution.<br /><br />                    <br /><br /><br />                    .<br />                    Follow us on twitter at http://twitter.com/itn_news.',rating_avg:'4.173913',rating_count:'23',view_count:'5914',favorite_count:'8',tags:'Iran, Iranian, revolution, Tehran, opposition, protests, rally, Ahmadinejad, President Ahmadinejad, Mahmoud Ahmadinejad',upload_time:'1265897788',thumbnail_url:'http://img.youtube.com/vi/KXT0uaiwt4Y/default.jpg',mid:'307745'},{id:'dfikrzIg8hM',length_seconds:'03:58',comment_count:'0',author:'worldfocusonline',title:'Massive Tehran rallies commemorate Islamic Revolution',description:'As Iran battles dissent at home and abroad, hundreds of thousands of people showed their support for the government today. Iranians took to the streets of Tehran to mark the 31st anniversary of the revolution that created the Islamic republic. Geneive Abdo joins Daljit Dhaliwal for more on today\'s events and Iran\'s continuing defiance on the nuclear issue. http://worldfocus.org/blog/2010/02/11/massive-tehran-rallies-commemorate-islamic-revolution/9650/',rating_avg:'',rating_count:'',view_count:'4',favorite_count:'0',tags:'Geneive Abdo, Iran, Iranian protests, Iranian revolution, opposition, The Century Foundation, Voices of Iran',upload_time:'1265930896',thumbnail_url:'http://img.youtube.com/vi/dfikrzIg8hM/default.jpg',mid:'307746'},{id:'KBI8hXD2iao',length_seconds:'01:28',comment_count:'35',author:'AssociatedPress',title:'January Unemployment Rate Drops to 9.7 Percent',description:'The unemployment rate dropped unexpectedly in January to 9.7 percent, while employers shed 20,000 jobs, according to a report that offered hope the economy will add jobs soon. (Feb. 5)',rating_avg:'3.3157895',rating_count:'19',view_count:'430',favorite_count:'1',tags:'Economy',upload_time:'1265405487',thumbnail_url:'http://img.youtube.com/vi/KBI8hXD2iao/default.jpg',mid:'307747'},{id:'0Q-Q1bMIn9E',length_seconds:'02:18',comment_count:'0',author:'CBSNewsOnline',title:'Unexpected Unemployment Drop',description:'The national unemployment rate has fallen to 9.7 percent, as economists say that this could signal a potential rebound for the jobs market and the overall economy.  Anthony Mason reports.',rating_avg:'',rating_count:'',view_count:'113',favorite_count:'0',tags:'cbsepisode, Unemployment, Unemployed, Underemployed, Recession, Economy, Business, Work, Career, Job, Occupation, Salary, Wage',upload_time:'1265415412',thumbnail_url:'http://img.youtube.com/vi/0Q-Q1bMIn9E/default.jpg',mid:'307748'},{id:'QrVAu4WWB50',length_seconds:'00:56',comment_count:'7',author:'CBSNewsOnline',title:'Does Paulson Agree with Big Bonuses?',description:'Anthony Mason asks former Treasury Secretary Henry Paulson whether he would be dishing out big bonuses if he ran a bank. Watch Anthony Mason\'s report on &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;quot;Sunday Morning&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;quot; Jan. 31 at 9:00 a.m. ET/PT',rating_avg:'1.0',rating_count:'1',view_count:'254',favorite_count:'0',tags:'cbsepisode, sunday, morning, henry, paulson, former, treasure, secretary, economy, unemployment',upload_time:'1264803748',thumbnail_url:'http://img.youtube.com/vi/QrVAu4WWB50/default.jpg',mid:'307749'},{id:'3yaBRLRL8Vw',length_seconds:'01:21',comment_count:'34',author:'fal2grace',title:'Home sales take worst hit in 40 years',description:'WASHINGTON - Sales of previously occupied homes took their largest drop in more than 40 years last month yet managed to end 2009 with the first annual gain in four years.<br /><br />Still, prices plunged by more than 12 percent last year &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;acirc;�� the sharpest fall since the Great Depression. The price drop for 2009 &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;acirc;�� to a median of $173,500 &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;acirc;�� showed the housing market remains too weak to help fuel a sustained economic recovery. Total sales for 2009 were nearly 5.2 million, up about 5 percent from 2008.<br /><br />Last month\'s worse-than-expected showing underscores concerns that the housing market could weaken further after March 31, when the Federal Reserve is set to end its program to buy mortgage securities to keep home loan rates low. Once that program ends, mortgage rates could rise. Adding to the worries, a newly extended homebuyer tax credit is scheduled to run out at the end of April. <br /><br />December\'s sales fell 16.7 percent to a seasonally adjusted annual rate of 5.45 million, from an unchanged pace of 6.54 million in November, the National Association of Realtors said Monday. Sales had been expected to fall by about 10 percent, according to economists surveyed by Thomson Reuters.<br /><br />Copyright MSNBC 2010',rating_avg:'4.967742',rating_count:'31',view_count:'215',favorite_count:'1',tags:'home, sales, drop, worst, hit, 40, years, first, time, buyers',upload_time:'1264444233',thumbnail_url:'http://img.youtube.com/vi/3yaBRLRL8Vw/default.jpg',mid:'307750'},{id:'Us-Mldt2efA',length_seconds:'01:45',comment_count:'1334',author:'AFP',title:'Obama\'s first year in the White House',description:'One year ago, on January 20, 2009, Barack Obama was sworn in as the first African-American president in US history. Some observers had proclaimed a new era of bipartisan politics and racial harmony -- but those lofty hopes have since dissolved in Washington\'s political tumult.Duration: 01:41',rating_avg:'2.761628',rating_count:'344',view_count:'48565',favorite_count:'44',tags:'WEB, US, POLITICS, OBAMA',upload_time:'1263846679',thumbnail_url:'http://img.youtube.com/vi/Us-Mldt2efA/default.jpg',mid:'307751'},{id:'QI-PcNabWx0',length_seconds:'02:42',comment_count:'6',author:'CBS',title:'Haiti: From Rescue to Recovery',description:'CBS News\' Jeff Glor reports from the Haitian capital of Port-au-Prince, four days after a devastating earthquake left most of this area in rubble, as rescue operations turns to a recovery mission.',rating_avg:'5.0',rating_count:'2',view_count:'555',favorite_count:'1',tags:'cbsepisode, cbshaiti, Reporter, Haiti, Account, Eyewitness, Disaster, Damage, Destruction, Bodies, News, Journalist, Earthquake, Port-au-Prince',upload_time:'1263661638',thumbnail_url:'http://img.youtube.com/vi/QI-PcNabWx0/default.jpg',mid:'307752'},{id:'PZf8MRYasss',length_seconds:'05:24',comment_count:'901',author:'AmRedCross',title:'Earthquake in Haiti (January 12, 2010)',description:'Tracy Reines, Director of Response Operations for the American Red Cross, discusses the latest for the disaster response to Haiti as of 11 PM EST on Tuesday night. For more information on how your can help, visit www.redcross.org.<br /><br />You can help the victims of countless crises around the world each year by making a financial gift to the American Red Cross International Response Fund, which will provide immediate relief and long-term support through supplies, technical assistance and other support to help those in need. Donations to the International Response Fund can be sent to the American Red Cross, P.O. Box 37243, Washington, D.C. 20013 or made by phone at 1-800-REDCROSS or 1-800-257-7575 (Spanish) or online at www.redcross.org.<br /><br />We are not accepting volunteers to travel to Haiti. If you would like to volunteer for the American Red Cross, please contact your local chapter. For inquiries about relatives living and who have citizenship in Haiti, please be patient and call repeatedly until the lines clear or contact other family members who live nearby. Telephone, Internet and other communication lines are often disrupted in times of disaster. People trying to locate U.S. citizens living or traveling in Haiti should contact the U.S. Department of State, Office of Overseas Citizens Services, at 1-888-407-4747 or 202-647-5225.',rating_avg:'4.3623853',rating_count:'218',view_count:'68829',favorite_count:'89',tags:'red cross, earthquake, haiti, response, help, donate',upload_time:'1263360590',thumbnail_url:'http://img.youtube.com/vi/PZf8MRYasss/default.jpg',mid:'307753'},{id:'c4iYrtRKarU',length_seconds:'03:30',comment_count:'7',author:'CBS',title:'What\'s Ahead for 2010?',description:'As the new decade begins, questions about national security and the economy loom. John Dickerson and Lakshman Achuthan speak with Jeff Glor about what lies ahead.',rating_avg:'4.2727275',rating_count:'11',view_count:'618',favorite_count:'4',tags:'cbsepisode, whats, ahead, for, 2010, cbs, evening, news, jeff, glor, john, dickerson, health, care, economy, security, national',upload_time:'1262478494',thumbnail_url:'http://img.youtube.com/vi/c4iYrtRKarU/default.jpg',mid:'307754'},{id:'ZTpjXUfFEsQ',length_seconds:'02:24',comment_count:'4',author:'CBS',title:'Top Medical Stories Of 2009',description:'From a deadly pandemic to controversy over medical guidelines for mammograms, news from the medical world led to some of 2009\'s biggest headline. Dr. Jennifer Ashton reports.',rating_avg:'5.0',rating_count:'5',view_count:'269',favorite_count:'2',tags:'cbs2009, h1n1, mammograms, swine, flu, health',upload_time:'1261684234',thumbnail_url:'http://img.youtube.com/vi/ZTpjXUfFEsQ/default.jpg',mid:'307755'},{id:'bg_JTVm8pZU',length_seconds:'02:46',comment_count:'55',author:'notsonoisy',title:'HAPPY NEW YEAR 2010 with 24 candles',description:'24 CANDLES, FIRE, WORDS / how to wish you an happy new year 2010 with 24 candles<br />video by http://www.NOTsoNOISY.com - NOTsoNOISY Guillaume Reymond<br />for BHAKTI PRODUCTION Dominique Mermoud Smith - http://www.BHAKTI.ch<br />music &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;quot;Whitehair Child&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;quot; by ALOAN - http://www.ALOAN.ch<br />&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;Acirc;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;copy; 2009 NOTsoNOISY Guillaume Reymond',rating_avg:'4.881119',rating_count:'143',view_count:'7501',favorite_count:'113',tags:'happy, new, year, 2010, bonne, joyeuse, nouvelle, ann&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;Atilde;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;copy;e, 24, bougies, feu, mots, lettres, letters, candles, fire, words, fille, chat, girl, cat, bhakti, notsonoisy, guillaume, reymond',upload_time:'1261402007',thumbnail_url:'http://img.youtube.com/vi/bg_JTVm8pZU/default.jpg',mid:'307756'},{id:'W84A0YPp2lQ',length_seconds:'04:37',comment_count:'0',author:'HouseDrs',title:'Basic Decorating to Make it Through the Holidays: DIY All in the Detail',description:'Todays All in the Detail continues our month long series Making it through the Holidays.  This weeks topic is The Basics for Christmas Decorating.  So, youre not quite sure where to begin when it comes to Christmas decorating? Well, these easy, creative tips can help you get your house ready for the season in style. From coffee table bouquets to ribbon loops on the tree, this All in the Detail will fill your home with holiday cheer.',rating_avg:'',rating_count:'',view_count:'',favorite_count:'',tags:'interior, designer, design, decorator, home, improvement, decorate, helpful, hints, decorating, Atlanta, d&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;eacute;cor, renovating, renovation, House, Doctors, Radio, Show, Jalon, Burton, Georgia, Peachtree, City, virtual, furniture, accessories, window, treatments, drapes, sexy, bedroom, dinner, party, space, planning, lighting, color, palette, ideas, before, after, remodel, It, Can, Be, Arranged, wheel, paint, closet, organizing, dining, room, eco, friendly, cleaners, makeup, bathroom, medicine, razor, shower, Christmas, Holidays, Santa, Claus',upload_time:'1261410794',thumbnail_url:'http://img.youtube.com/vi/W84A0YPp2lQ/default.jpg',mid:'307757'},{id:'Wfja50L9oEo',length_seconds:'04:24',comment_count:'0',author:'gourmetnutritionist',title:'Gifts for Foodies',description:'This morning, I appeared on NBC\'s Daytime to talk about my favorite holiday gifts for health-conscious foodies.',rating_avg:'',rating_count:'',view_count:'',favorite_count:'',tags:'Tina Ruggiero, The Gourmet Nutritionist, WFLA, Gifts for Foodies',upload_time:'1260986994',thumbnail_url:'http://img.youtube.com/vi/Wfja50L9oEo/default.jpg',mid:'307758'},{id:'0Hs87SlLxrU',length_seconds:'03:34',comment_count:'0',author:'better',title:'Inexpensive Stocking Stuffers',description:'Everyone is looking to save a buck or two this season, but there is no need to cut those holiday gifts from the budget.  Jenn Falik is here with some great stocking stuffers, all for under $30.',rating_avg:'',rating_count:'',view_count:'20',favorite_count:'0',tags:'all in one, bon bon, stocking stuffer, make up artist, gift, save us',upload_time:'1260548171',thumbnail_url:'http://img.youtube.com/vi/0Hs87SlLxrU/default.jpg',mid:'307759'},{id:'uMDcbBt--1Y',length_seconds:'02:07',comment_count:'15',author:'UPIVideo',title:'Reaction: U.S. unemployment rate drops',description:'The U.S. unemployment rate dropped to 10 percent in November, down from 10.2 percent in October.  Are you encouraged by or wary of this news?  Almost eight million Americans have lost their jobs since the recession began about two years ago.  What do you think it will take to jumpstart hiring at this point?  How have you been handling the current job market?',rating_avg:'5.0',rating_count:'2',view_count:'172',favorite_count:'0',tags:'UPI, news, unemployment, economy, jobs, market',upload_time:'1259948608',thumbnail_url:'http://img.youtube.com/vi/uMDcbBt--1Y/default.jpg',mid:'307760'},{id:'uinJlRvoC6g',length_seconds:'04:17',comment_count:'',author:'Bloomberg',title:'Korn/Ferry\'s Burnison Sees `Slow\' Growth For Job Market: Video',description:'Dec. 9 (Bloomberg)  Gary Burnison, chief executive officer of Korn/Ferry International, talks with Bloombergs Lori Rothman about the outlook for the U.S. job market.<br />     Burnison also discusses the potential impact of executive pay limits on recruiting, the prospects for mergers and acquisitions and Korn/Ferry\'s business model. (Source: Bloomberg)',rating_avg:'',rating_count:'',view_count:'146',favorite_count:'0',tags:'Korn/Ferry\'s, Burnison, Sees, `Slow\', Growth, For, Job, Market:, Video, Bloomberg, CEO, Interviews, Company, News, Economic, English, Multimedia, Executive, Compensation, Government, Labor, Unions, Mergers, Acquisitions, Multimedia-Exec, Interview, Multimedia-Market, Experts, Stock, Market',upload_time:'1260391249',thumbnail_url:'http://img.youtube.com/vi/uinJlRvoC6g/default.jpg',mid:'307761'},{id:'n4NdD34gKrI',length_seconds:'06:04',comment_count:'0',author:'DSpacesTV',title:'Healthy for the Holidays',description:'Its the holidays! A time when family and friends from all across the country are often brought together under one roof, spending time going out to places where more people congregate, such as shopping malls, movie theaters, restaurants, and of course airports. All of these folks coming together for the holidays exposes them to the risk of contracting an illness. This holiday season can be an extremely high risk period for contamination of the H1N1 Swine Flu virus.',tags:'flu, swine flu, illness, contamination',upload_time:'1259937925',thumbnail_url:'http://img.youtube.com/vi/n4NdD34gKrI/default.jpg',mid:'307762'},{id:'hupN1OXv9eQ',length_seconds:'04:48',comment_count:'0',author:'DavidCarrierShow',title:'How far does the Family Medical Leave Act go?',description:'I was raised by my Aunt.  She\'s now 80 years old, lives out of state, &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp; needs me to help care for her.  I don\'t have any vacation days left.  Can the Family Medical Leave Act allow me time off from work?  David Carrier has all the answers!',view_count:'2',favorite_count:'0',tags:'david, carrier, show, attorney, law, lawyer, legal, radio, host, newsradio, wood, 1300, wtkg, whtc, wbrn, free, family, advice, call, elder, estate, planning, business, medicare, medicaid, program, michigan, elderly, senior, seniors, help, financial, unemployment, employment, parents, move, moving, home, qualification, qualify, grownups, healthcare, health, care, medical, leave, act, fmla, aunt, relative, st., louis, work, time, off, paid, unpaid',upload_time:'1259421583',thumbnail_url:'http://img.youtube.com/vi/hupN1OXv9eQ/default.jpg',mid:'307763'},{id:'D_gWpk9nnFk',length_seconds:'05:24',author:'Bloomberg',title:'ISM\'s Ore Expects U.S. Manufacturing Growth, Hiring: Video',description:'Dec. 1 (Bloomberg) -- Norbert Ore, chairman of the Institute for Supply Management\'s manufacturing business survey committee, talks with Bloomberg\'s Lori Rothman and Mark Crumpton about the November U.S. manufacturing report.<br />     Manufacturing in the country expanded for a fourth consecutive month, putting factories at the forefront of the economic recovery. The ISM manufacturing index fell to 53.6, lower than forecast, from October\'s three-year high of 55.7, according to the Tempe, Arizona-based group. Readings above 50 signal expansion. (Source: Bloomberg)',view_count:'42',favorite_count:'1',tags:'ISM\'s, Ore, Expects, U.S., Manufacturing, Growth, Hiring:, Video, Audio, Visual, Auto, Parts, Automobiles, Bloomberg, Clothing, Apparel, Commodities, Inventories, ex-Energy, Economic, News, Statistics, English, Multimedia, Interviews, Labor, Unions, Machinery, Multimedia-Market',upload_time:'1259694931',thumbnail_url:'http://img.youtube.com/vi/D_gWpk9nnFk/default.jpg',mid:'307764'},{id:'pikzH4YeYsI',length_seconds:'02:42',comment_count:'0',author:'TheWeatherChannel',title:'The Nutrition Twins\' Thanksgiving advice',description:'Nov. 23, 2009  Lyssie and Tammy Lakatos give Al some advice on healthy holiday eating do\'s and don\'ts.',view_count:'43',favorite_count:'0',tags:'none',upload_time:'1258990930',thumbnail_url:'http://img.youtube.com/vi/pikzH4YeYsI/default.jpg',mid:'307765'},{id:'CUvGsZgh8jo',length_seconds:'00:27',comment_count:'0',author:'WIVBTV',title:'Study shows secondhand smoke\'s risks',description:'Thursday is the Great American Smoke Out, many western New Yorkers including News 4\'s Joe Arena will try to kick the smoking habit.',rating_avg:'',rating_count:'',view_count:'12',favorite_count:'0',tags:'Study, shows, secondhand, smoke\'s, risks',upload_time:'1258637565',thumbnail_url:'http://img.youtube.com/vi/CUvGsZgh8jo/default.jpg',mid:'307766'},{id:'VrSW2lMAOis',length_seconds:'03:24',comment_count:'0',author:'MyUCD',title:'Genetics of healthy eating',description:'Whether we like certain foods or not may be something we have no control over.  Dr Eileen Gibney discusses how our genes can influence our food choices and how this may determine how healthy our diets really are.',rating_avg:'',rating_count:'',view_count:'',favorite_count:'',tags:'Genetics, of, eating, witth, titles',upload_time:'1258384400',thumbnail_url:'http://img.youtube.com/vi/VrSW2lMAOis/default.jpg',mid:'307767'},{id:'wWPFW_8D05U',length_seconds:'02:08',comment_count:'166',author:'Howcast',title:'How to Survive Unemployment',description:'Survive unemployment and come out stronger with these coping strategies.',rating_avg:'4.735849',rating_count:'159',view_count:'16842',favorite_count:'101',tags:'hothowtos, careers, jobs, lost, fired, unemployment, unemployed, applying, surviving, living, work',upload_time:'1239811789',thumbnail_url:'http://img.youtube.com/vi/wWPFW_8D05U/default.jpg',mid:'307768'},{id:'lZInStz74V0',length_seconds:'04:43',comment_count:'7',author:'AssociatedPress',title:'Unemployment Rate \'disappointments\' White House',description:'Christina Romer, a top White House economic adviser, says unemployment numbers topping 10 percent were expected, but still a disappointment. Still, she says the economy is showing some positive signs. (Nov. 6)',rating_avg:'3.8',rating_count:'5',view_count:'307',favorite_count:'0',tags:'romer economy, unemployment, rate, disappointments, white, house',upload_time:'1257524124',thumbnail_url:'http://img.youtube.com/vi/lZInStz74V0/default.jpg',mid:'307769'},{id:'6XB8xuHVB88',length_seconds:'02:37',comment_count:'0',author:'TheBizRoom',title:'Preventing Foreclosure Explained',description:'http://www.payoffyourdebt.org Preventing Foreclosure explained. You do not have to hire a foreclosure prevention company, you can help yourself!',view_count:'2',favorite_count:'0',tags:'How, to, stop, foreclosure, explained, Foreclsoure, SCAMS, Here, is',upload_time:'1257004314',thumbnail_url:'http://img.youtube.com/vi/6XB8xuHVB88/default.jpg',mid:'307770'},{id:'yIWVpGFvsbk',length_seconds:'04:35',comment_count:'0',author:'CapellaCareerCenter',title:'How to close an interview',description:'Discover how to make the most of the end of a job interview. Review the before and after transformation of an interview candidate.',view_count:'81',favorite_count:'0',tags:'capella, capella university, online education, online university, career, career tips, jobs, employment, elearning, college, degree, interviewing, interview',upload_time:'1255538683',thumbnail_url:'http://img.youtube.com/vi/yIWVpGFvsbk/default.jpg',mid:'307771'},{id:'dqDaFyO0pao',length_seconds:'02:55',comment_count:'0',author:'J2BMarketing',title:'Blogging for Your Job Search',description:' ',tags:'Blogging, for, Your, Job, Search',upload_time:'1256313379',thumbnail_url:'http://img.youtube.com/vi/dqDaFyO0pao/default.jpg',mid:'307772'},{id:'3xexuWyU8Ps',length_seconds:'01:51',comment_count:'2',author:'CBSNewsOnline',title:'Homeowners Wait For A Break',description:'The Obama administration designed a program to prevent as many as four million foreclosures, but is it helping? Anthony Mason reports.',rating_avg:'4.5',rating_count:'2',view_count:'303',favorite_count:'0',tags:'cbsepisode, mortgage, crisis, barack, obama',upload_time:'1255131614',thumbnail_url:'http://img.youtube.com/vi/3xexuWyU8Ps/default.jpg',mid:'307773'},{id:'eXjaG6JglOw',length_seconds:'01:20',comment_count:'2',author:'GoodHousekeepingMag',title:'Get Produce for Less',description:'Fruit and vegetable consumption is going down. Stay on budget without skimping on family health with these tips from Good Housekeeping.<br /><br />Good Housekeeping Videos:<br />http://www.goodhousekeeping.com/video/?src=syn&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;mag=ghk&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;dom=youtube&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;chan=home&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;link=rel_657<br /><br />Good Housekeeping Magazine:<br />http://www.goodhousekeeping.com/?src=syn&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;mag=ghk&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;dom=youtube&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;chan=home&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;link=rel_658<br /><br />Subscribe to Good Housekeeping:<br />http://subscribe.hearstmags.com/subscribe/splits/goodhousekeeping/ghk_sub_nav_link<br /><br />-',rating_avg:'5.0',rating_count:'7',view_count:'270',favorite_count:'4',tags:'budget, deals, groceries, produce, saving money, shopping',upload_time:'1254323508',thumbnail_url:'http://img.youtube.com/vi/eXjaG6JglOw/default.jpg',mid:'307774'},{id:'eOOSNevJ2MI',length_seconds:'01:45',author:'weshtv',title:'Unemployed Residents Struggle For Insurance',description:'Many of the nearly 300,000 Floridians who are unemployed are struggling to cover health costs without insurance.',view_count:'25',favorite_count:'0',tags:'insurance, unemployment, coverage, money, job, health, project, economy',upload_time:'1255992035',thumbnail_url:'http://img.youtube.com/vi/eOOSNevJ2MI/default.jpg',mid:'307775'},{id:'MmVMjKovsew',length_seconds:'02:09',comment_count:'',author:'wmurtv',title:'Employees Uncertain As Layoff Notices Go Out',description:'Employees of some departments are still waiting to hear if they\'re on the list of state layoffs.',rating_avg:'',rating_count:'',view_count:'8',favorite_count:'0',tags:'New, Hampshire, contract, union, layoffs, employees',upload_time:'1255560933',thumbnail_url:'http://img.youtube.com/vi/MmVMjKovsew/default.jpg',mid:'307776'},{id:'3hC-MWwXrhw',length_seconds:'05:07',comment_count:'4',author:'jimfarr194',title:'The Video Job Interview',description:'As a hiring manager I think it would be valuable to see a Video Job Interview of my candidate, prior to the actual interview. Reviewing resumes and phone interviews are part of the interview process, but actually seeing the candidate being interviewed on video and responding to questions would add a valuable element not previously available.<br /><br />Some advantages of viewing a Video Job Interview for a hiring manager are:<br /><br />More valuable information with minimal time requirements.<br />A test of the candidate\'s ingenuity and ability to use current technology.<br />The advantage of viewing the candidate answering questions in a somewhat stressful situation.<br />The ability to see what a candidate deems important and an idea of what type of end result (The Video) the candidate believes is a job well done.<br />For a job seeker there are many advantages to creating a video being interviewed for a job opening. Most importantly it would show great ingenuity, as I have not seen anyone do it yet. Here a few other advantages that comes to mind:<br /><br />Showcase your ability to use current technology.<br />Your Video Job Interview can be produced to highlight your strengths and accomplishments, and targeted to impress hiring managers.<br />The advantage of marketing the video to hiring managers via social networking sites like Facebook, Twitter, LinkedIn, etc.<br />Your video link can be marketed in your e-mail signature.<br />Gaining a competitive edge.<br /> <br /><br />This is where I need some help. Is this a good idea? Can it be improved on? Please make comments, and do not be afraid to be critical. I am the Chairperson of the Monmouth/Ocean Chapter of the Financial Executives Networking Group (FENG) and am testing the Video Job Interview for the group. Any feedback will help us improve on using YouTube Videos in your job search.',rating_avg:'5.0',rating_count:'4',view_count:'230',favorite_count:'0',tags:'Video, Job, Interview, Tips',upload_time:'1254672471',thumbnail_url:'http://img.youtube.com/vi/3hC-MWwXrhw/default.jpg',mid:'307777'},{id:'WFSsH9cirnQ',length_seconds:'00:44',comment_count:'0',author:'anithingartist',title:'Animatazz Swine Flu with titles',description:' ',tags:'Animatazz, Swine, Flu, with, titles',upload_time:'1256833516',thumbnail_url:'http://img.youtube.com/vi/WFSsH9cirnQ/default.jpg',mid:'307778'},{id:'5ezblHw-BZc',length_seconds:'03:28',comment_count:'29',author:'staysmartstayhea1thy',title:'COBRA - What Is It and How Does It Work?',description:'http://www.staysmartstayhealthy.com COBRA allows you to continue your healthcare coverage for up to 18 months. With COBRA certain people with a disability are allowed 11 additional months. And, even if you choose not to extend your health insurance coverage immediately after you leave your job, you have a grace period in which you can still enroll.<br /><br />Todays question: What is COBRA and how does it work?<br /><br />The simple answer is: Its an opportunity to continue your employer-sponsored health insurance when you lose your job.<br /><br />So, COBRA isnt the venomous, yet charming snake.  <br /><br />Under federal law, COBRA gives you the right to temporarily continue purchasing the group health insurance you had at work when you leave your job due to a qualifying event. <br /><br /><br />COBRA stands for Consolidated Omnibus Budget Reconciliation Act - which explains why they call it COBRA.<br /><br /><br />It applies if your company\'s group health plan covers 20 or more workers, and in instances of a qualifying event. <br />These events include having your hours cut, <br />quitting your job, or being let go for a reason other than gross misconduct, like stealing. <br /><br />In general, COBRA allows you to continue your coverage for up to 18 months.<br /><br />Certain people with a disability are allowed 11 additional months. And, even if you choose not to extend your coverage immediately after you leave your job, you have a grace period in which you can still enroll. <br /><br /><br />Lets say Gary loses his job due to cutbacks because nobody is buying his companys battery-operated flyswatters. <br /><br />Because losing your job is a qualifying event, Gary can use COBRA to cover himself and his wife, provided she was covered in his health plan at work. Gary\'s wife can continue to use COBRA if Gary becomes entitled to Medicare and gives up his group coverage, if there is a divorce or legal separation, or if he goes to that great golf course in the sky.<br /><br />Dependent children who were covered by his plan can use COBRA in those same cases. They can also extend their coverage when they are no longer considered dependents.<br /><br />When you use COBRA, you are responsible for paying 100 of the cost, plus an administrative fee. That means you pay what you paid as an employee, plus what your employer paid, plus 2. <br /><br />This may still be less expensive than an individual policy with similar coverage, so do your research.<br /><br />This just in! <br /> <br />With the approval of the new Stimulus Package, COBRAs terms have changed. <br /><br />Individuals who are eligible for COBRA  except those who left their jobs voluntarily  may qualify for a 65 subsidy for nine months. <br /><br />Thats big!<br /><br />Lets say Gary is laid off from Global Flyswatters, Inc. between September 1, 2008, and December 31, 2009. <br /><br />He is now qualified to get COBRA coverage for just 35 of the total cost even if he already declined it. <br /><br />That means, if Gary\'s health insurance cost his company $300 a month, and cost Gary $200 a month, his total insurance cost was $500 a month. <br /><br />Under the new stimulus plan, Gary would be eligible for COBRA for just $175 a month. He\'s eligible as long as he isnt what they call a high-income individual  that is, a single tax filer with an adjusted gross income of $125,000 or more, or a joint filer with income over $250,000. Not a problem for Gary.  To sum it up, when you leave your job due to qualifying events, COBRA gives you the opportunity to continue purchasing the group health insurance you had for yourself and your dependents for a limited time when you leave your job due to a qualified event. Normally, you pay 102 of the cost. But with the new stimulus package, qualified individuals are entitled to a subsidy that covers 65 of the total.<br />    <br />So now you know.  Until next time, stay smart and stay healthy.',rating_avg:'3.1384616',rating_count:'65',view_count:'196761',favorite_count:'42',tags:'Healthcare, COBRA, Health, Insurance, Humana, stay, smart, healthy',upload_time:'1243344505',thumbnail_url:'http://img.youtube.com/vi/5ezblHw-BZc/default.jpg',mid:'307779'},{id:'KyKuzjn3eSA',length_seconds:'03:08',author:'Bloomberg',title:'Wesbury Says U.S. May See Job Growth by December: Video',description:'Nov. 6 (Bloomberg) -- Brian Wesbury, chief economist at First Trust Advisors LP, talks with Bloomberg\'s Carol Massar and Matt Miller about the U.S. labor market and economy.<br />     The unemployment rate in the U.S. jumped to 10.2 percent in October, the highest level since 1983, casting a pall over the prospects for a sustained recovery. (Source: Bloomberg)',view_count:'311',favorite_count:'0',tags:'Wesbury, Says, U.S., May, See, Job, Growth, by, December:, Video, Audio/Video, Banking, Bloomberg, Country, Economies, Economic, News, English, Multimedia, Federal, Stimulus, Plan, Interviews, Labor, Unions, Dept, Syndicated, AV, Reports, Television, Troubled, Assets, Relief, Pgm, United, States',upload_time:'1257557437',thumbnail_url:'http://img.youtube.com/vi/KyKuzjn3eSA/default.jpg',mid:'307780'},{id:'kk13UwWF3iI',length_seconds:'01:32',comment_count:'0',author:'KulturystykaEdu',title:'MERRY CHRISTMAS and HAPPY NEW YEAR',description:'zabawne &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;Aring;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;frac14;yczenia &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;Aring;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;iuml;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;iquest;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;frac12;wi&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;Auml;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;iuml;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;iquest;&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;frac12;teczne',tags:'&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;Aring;',upload_time:'1261586292',thumbnail_url:'http://img.youtube.com/vi/kk13UwWF3iI/default.jpg',mid:'307781'}]},
		initialize: function () {this.createP()}

};
var IDTVLBDataSource7a72c3d9cbIF = function () {IDTVLBDataSource7a72c3d9cb.initialize.apply(IDTVLBDataSource7a72c3d9cb, []);};
if (document.getElementById('IDTVP_7a72c3d9cb'))
	IDTVLBDataSource7a72c3d9cbIF ();
else if (window.addEventListener)
	window.addEventListener("load", IDTVLBDataSource7a72c3d9cbIF, true);
else
	window.attachEvent("onload", IDTVLBDataSource7a72c3d9cbIF);
