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_c6ced1f34c')[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/c6ced1f34c/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 IDTVLBDataSourcec6ced1f34c = {
	id: 'c6ced1f34c', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 516, height: 2340, pp: 30,
	rows: 10, cols: 3,
	plw: 640, plh: 540,
	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 : true, thumb_show_description : false,
	thumb_show_labels : true,
	thumbnail_text: 'B',
	pldelta: 0,
		data: {results: [{id:'1UQ7MnpHgtc',title:'2012 - New Movie Trailer 2',author:'Tigerfeuer',real_length:'142',length_seconds:'02:22',rating_avg:'4.7972975',rating_count:'74',view_count:'45781',description:'www.whowillsurvive2012.com',tags:'2012, 2012 trailer, 2012 trailer 2, 2012 neuer trailer, 2012 new trailer, roland emmerich, emmerich, ende der welt, the end, apokalypse, harmageddon, end, erde, planet, planet x, tigerfeuer, maya, maya kalender',thumbnail_url:'http://i.ytimg.com/vi/1UQ7MnpHgtc/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/1UQ7MnpHgtc/responses',ord:''},{id:'uZIfyXc8RWk',title:'Signs of the End!',author:'Moonvie',real_length:'224',length_seconds:'03:44',rating_avg:'4.001425',rating_count:'3509',view_count:'2438887',description:'THIS VIDEO IS NOT INTENDED FOR CHILDREN. Solar & Mayan signs of the end of the age.The segment of the Mayan calendar is from the TimeLife \'Lost Civilization\' series.NOAA\'s just coming to it themsleves:  http://www.magazine.noaa.gov/stories/mag227.htmSolar scientists at Boulder, Colorado have a new satellite to observe the temperature variations of the Sun to try to ascertain what predictions are saying about the Solar Cycle coming in 2012 - Click it http://www.astronomy.com/asy/default.aspx?c=a&id=6212 If you\'d like to know Who is controling the Cosmic Clock and how to be covered from the coming Solar events click here: http://www.thefirmament.org',tags:'Sunspot, signs, solar, time, calendar, mayan, prophecy, 2012, amazing, end, times, later, days, doomsday, Judgment, Day',thumbnail_url:'http://i.ytimg.com/vi/uZIfyXc8RWk/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/uZIfyXc8RWk/responses',ord:'1'},{id:'45woa31-ZBY',title:'2012 Explained, by Daniel Pinchbeck',author:'theresident',real_length:'366',length_seconds:'06:06',rating_avg:'4.231047',rating_count:'277',view_count:'32538',description:'If you\'ve ever wondered what the whole "2012" thing is about, watch this interview. http://www.theresident.net',tags:'2012, daniel, pinchbeck, quetzalcoatl, breaking, open, head, reality, sandwich, mayanism, shamanism, psychedelics',thumbnail_url:'http://i.ytimg.com/vi/45woa31-ZBY/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/45woa31-ZBY/responses',ord:'2'},{id:'QJjQMwEjC1I',title:'Neil deGrasse Tyson - World to End In 2012...or Not',author:'ForaTv',real_length:'160',length_seconds:'02:40',rating_avg:'4.8135047',rating_count:'933',view_count:'132775',description:'Complete video at: http://fora.tv/2009/02/04/Neil_deGrasse_Tyson_Pluto_FilesAuthor and astrophysicist Neil deGrasse Tyson dismisses the popular internet doomsday theory that a "Planet X," aka Nibiru, will return to our solar system in 2012 and fatally disrupt the Earth\'s orbit -- a claim Tyson describes as a "marvelous work of fiction."-----Neil deGrasse Tyson, the bestselling author and director of the world-famous Hayden Planetarium, chronicles America\'s irrational love affair with Pluto, man\'s best celestial friend.Neil deGrasse Tyson was born and raised in New York City where he was educated in the public schools clear through his graduation from the Bronx High School of Science. Tyson went on to earn his BA in Physics from Harvard and his PhD in Astrophysics from Columbia. Tyson\'s professional research interests are broad, but include star formation, exploding stars, dwarf galaxies, and the structure of our Milky Way. Tyson obtains his data from the Hubble Space Telescope, as well as from telescopes in California, New Mexico, Arizona, and in the Andes Mountains of Chile. In 2001, Tyson was appointed by President Bush to serve on a 12-member commission that studied the Future of the US Aerospace Industry. The final report was published in 2002 and contained recommendations (for Congress and for the major agencies of the government) that would promote a thriving future of transportation, space exploration, and national security. In 2004, Tyson was once again appointed by President Bush to serve on a 9-member commission on the Implementation of the United States Space Exploration Policy, dubbed the "Moon, Mars, and Beyond" commission. This group navigated a path by which the new space vision can become a successful part of the American agenda. And in 2006, the head of NASA appointed Tyson to serve on its prestigious Advisory Committee, which will help guide NASA through its perennial need to fit its ambitious vision into its restricted budget. In addition to dozens of professional publications, Dr. Tyson has written, and continues to write for the public.',tags:'2012, movie, nibiru, planet, destroy, earth, armageddon, nostradamus, prophecy, planets, align, aligned, sun, galaxy, gravity, mayan, mayans, prophets, calendar, conspiracy, orbiting, brown, dwarf, debunks, debunked, fake, myth, aliens',thumbnail_url:'http://i.ytimg.com/vi/QJjQMwEjC1I/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/QJjQMwEjC1I/responses',ord:'3'},{id:'2DylQeMx6hY',title:'2012: Science or Superstition',author:'disinfodave',real_length:'244',length_seconds:'04:04',rating_avg:'3.990909',rating_count:'440',view_count:'394228',description:'http://www.amazon.com/exec/obidos/ASIN/B001IF5PCE/disinformationFor more information visit: http://www.2012DVD.comThis is a preview of a Disinformation original documentary film, "2012: Science or Superstition" featuring John Major Jenkins, Daniel Pinchbeck, Alberto Villoldo, Robert Bauval, Jim Marrs and Graham Hancock to debut on (you guessed it) December 21st, the winter solstice and the date exactly four years before the end of the Mayan Calendar.',tags:'2012, mayan, ancient, trailer, science, mysticism, hidden, doomsday, mystery, superstition, history, controversial, solar system, Graham Hancock, John Major Jenkins, Daniel Pinchbeck, pole shift, apocalypse, december 21, documentary, movie, motion picture, film, 2012dvd, 2012dvd.com, 2012 movie, dvd',thumbnail_url:'http://i.ytimg.com/vi/2DylQeMx6hY/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/2DylQeMx6hY/responses',ord:'4'},{id:'ash_5a_37-w',title:'Decoding the Past: Doomsday 2012: End of Days (Clip)',author:'varygoode',real_length:'230',length_seconds:'03:50',rating_avg:'4.4245615',rating_count:'285',view_count:'261261',description:'This is a clip from the History Channel special entitled "Decoding the Past: Doomsday 2012: End of Days" regarding the Mayan calendar and the "pole shift" phenomenon.7/28/2009: I have disabled comments for this video clip. I will most likely enable them again sometime in 2012 if this video is still up.',tags:'2012, history, channel, doomsday, end, of, days, decoding, the, past',thumbnail_url:'http://i.ytimg.com/vi/ash_5a_37-w/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/ash_5a_37-w/responses',ord:'5'},{id:'Pt3z9ia8jFQ',title:'FOX: Many believe world will end in 2012',author:'ReligionNews',real_length:'121',length_seconds:'02:01',rating_avg:'3.911197',rating_count:'518',view_count:'283757',description:'Broadcast July 9, 2008Fox reports that there are "thousands and thousands" of people who believe that there is "a gathering storm" that will result in the end of the world in the year 2012.Video from http://RawStory.comUploaded for: http://Atheistmedia.blogspot.com-',tags:'fox, and, friends, 2012, end, of, world, idiots',thumbnail_url:'http://i.ytimg.com/vi/Pt3z9ia8jFQ/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Pt3z9ia8jFQ/responses',ord:'6'},{id:'3Rd6VWLbv9w',title:'Breaking the Maya Code #1: Introduction',author:'NightFireFilms',real_length:'154',length_seconds:'02:34',rating_avg:'3.5',rating_count:'2',view_count:'743',description:'Introduction to a feature documentary on the history of the Maya decipherment.  This is one of 8 scenes available on YouTube from the 2-hour documentary film Breaking the Maya Code, the winner of 5 Best Picture awards at International film festivals.  For more on the film and the Maya script go to http://www.nightfirefilms.org/breakingthemayacode/ or to buy the film on DVD go to http://www.nightfirefilms.net/store/store.htm',tags:'Cracking, Maya, Mayan, Mayanist, Code, linguistics, linguist, language, epigraphy, epigrapher, archaeology, archaeologist, writing, script, glyph, hieroglyph, hieroglyphic, decipher, decipherment, mathematics, math, arithmetic, astronomy, art, artist, tablet, stela, stelae, inscription, codex, codices, calendar, 2012, syllabary, syllable, syllabic, logogram, logograph, logographic, alphabet, explorers, scribe, scribal, ruins, temples, CCH, Pounder, Mexico, Guatemala, Honduras, Palenque, Copan, Quirigua, Yucatan, Mesoamerica, history, mystery',thumbnail_url:'http://i.ytimg.com/vi/3Rd6VWLbv9w/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/3Rd6VWLbv9w/responses',ord:'7'},{id:'p_cl_T7aOiA',title:'Happy New End',author:'ABYSSNRNS',real_length:'81',length_seconds:'01:21',rating_avg:'4.9159665',rating_count:'119',view_count:'44833',description:'Video Happy New End, une animation de Passion Paris sur la fin du monde en 2012 ! ! Je n\'ai pas produit cette video et tous les droits dessus reviennent a Paris Passion Production !',tags:'passion, Paris, production, happy, new, end, world, 2012, year, 2009',thumbnail_url:'http://i.ytimg.com/vi/p_cl_T7aOiA/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/p_cl_T7aOiA/responses',ord:'8'},{id:'tf3jPtaq9Q4',title:'Planet X / Nibiru 2012 Flyby Scenarios - February 2009 Report',author:'yowbooks',real_length:'1372',length_seconds:'22:52',rating_avg:'4.361772',rating_count:'1219',view_count:'349786',description:'Produced and narrated by Marshall Masters, the first part of this February 2009 video report focuses on the revised upwards estimates for a more violent solar maximum in 2012.  It also demonstrates the methodical manner, in which mainstream media has begun dumbing down science coverage of these important trends.The second half of the program presents a series of 2012 Planet X / Nibiru flyby scenarios developed by Jacco van der Worp, MSc.  Based on  core criteria called the electrical kill zone, it presents several Planet X / Nibiru flyby scenarios.  These 2012 scenarios range from a best case scenario to a possible Extinction Level Event (E. L. E.) flyby, where up to 90 of all presently living species could perish.YOWUSA.COMhttp://yowusa.com/video/Marshall MastersJacco van der Worp, MScJanice Manning*** ABOUT YOWUSA.COM ***http://yowusa.com/video/Your Own World USAs (yowusa.com) core mission is 2012 — Planet X / Nibiru education. First published in 1999, the web site features freely available interviews and articles for those seeking to become self-informed about the coming changes to life as we know it today.  It is important to stress that the founders of this site do not believe that this flyby will be the end of humankind. They stress that humanity will survive it as we have previous flybys — and that we shall evolve in response to it. Those who endure it will live to see the beginning of a better world.*** TRANSCRIPT ***A complete eBook transcript of this program is available.  Avaiable in several popular eBook formats, it features images from this program.  It also includes a detailed technical briefing first created by Jacco van der Worp, MSc, to help script the Planet X / Nibiru flyby scenarios presented in the second half of this program.   *** FAIR USE NOTICE ***(C) 2009 Your Own World, Inc., NV.  Please feel free to share complete and unedited copies of this program with others.  All other rights reserved.',tags:'feb2009report, yowusa, yowusa.com, 2012, planetx, nibiru, flyby, solar',thumbnail_url:'http://i.ytimg.com/vi/tf3jPtaq9Q4/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/tf3jPtaq9Q4/responses',ord:'9'},{id:'8S0bj76389U',title:'Surviving 2012 and Planet X - Part 1 of 5: The Threat',author:'yowbooks',real_length:'505',length_seconds:'08:25',rating_avg:'4.26476',rating_count:'3252',view_count:'1683236',description:'Part 1 of 5 shows how the approach of Planet X is already changing our world. Produced and hosted by Marshall Masters, a former CNN science feature field producer, this program offers a straightforward view of this coming human event.  As the co-author and publisher of Planet X Forecast and 2012 Survival Guide, Marshall believes that 2012 will be a survivable, evolutionary event.',tags:'2012, planetx, nibiru, survival',thumbnail_url:'http://i.ytimg.com/vi/8S0bj76389U/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/8S0bj76389U/related',ord:'10'},{id:'sjjrStDxTrc',title:'Surviving 2012 and Planet X - Part 2 of 5: Scientific Proof',author:'yowbooks',real_length:'575',length_seconds:'09:35',rating_avg:'4.4203916',rating_count:'1991',view_count:'961065',description:'Part 2 of 5 presents scientific proof for a catastrophic return of Planet X in 2012. Produced and hosted by Marshall Masters, a former CNN science feature field producer, this program offers a straightforward view of this coming human event.  As the co-author and publisher of Planet X Forecast and 2012 Survival Guide, Marshall believes that 2012 will be a survivable, evolutionary event.',tags:'2012, planetx, nibiru, survival',thumbnail_url:'http://i.ytimg.com/vi/sjjrStDxTrc/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/sjjrStDxTrc/related',ord:'11'},{id:'W5TOmRD_V48',title:'Surviving 2012 and Planet X - Part 3 of 5: Historical Proof',author:'yowbooks',real_length:'374',length_seconds:'06:14',rating_avg:'4.4027686',rating_count:'1517',view_count:'769188',description:'Part 3 of 5 presents historical proof for past catastrophic flybys of Planet X and ancient predictions regarding 2012. Produced and hosted by Marshall Masters, a former CNN science feature field producer, this program offers a straightforward view of this coming human event.  As the co-author and publisher of Planet X Forecast and 2012 Survival Guide, Marshall believes that 2012 will be a survivable, evolutionary event.',tags:'2012, planetx, nibiru, survival',thumbnail_url:'http://i.ytimg.com/vi/W5TOmRD_V48/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/W5TOmRD_V48/related',ord:'12'},{id:'HNZIyfBChmA',title:'Surviving 2012 and Planet X - Part 4 of 5: Surviving',author:'yowbooks',real_length:'507',length_seconds:'08:27',rating_avg:'4.2720504',rating_count:'1746',view_count:'713915',description:'Part 4 of 5 examines the massive Planet X preparations our governments are making in anticipation of a 2012 Planet X flyby.   Produced and hosted by Marshall Masters, a former CNN science feature field producer, this program offers a straightforward view of this coming human event.  As the co-author and publisher of Planet X Forecast and 2012 Survival Guide, Marshall believes that 2012 will be a survivable, evolutionary event.',tags:'2012, planetx, nibiru, survival',thumbnail_url:'http://i.ytimg.com/vi/HNZIyfBChmA/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/HNZIyfBChmA/related',ord:'13'},{id:'Zero0Y6TCA8',title:'Surviving 2012 and Planet X - Part 5 of 5: Beyond 2012',author:'yowbooks',real_length:'286',length_seconds:'04:46',rating_avg:'4.253886',rating_count:'1544',view_count:'731357',description:'Part 5 of 5 offers a post-2014 vision of our world and how humanity will rebuild after the Planet X flyby.  Produced and hosted by Marshall Masters, a former CNN science feature field producer, this program offers a straightforward view of this coming human event.  As the co-author and publisher of Planet X Forecast and 2012 Survival Guide, Marshall believes that 2012 will be a survivable, evolutionary event.',tags:'2012, planetx, nibiru, survival',thumbnail_url:'http://i.ytimg.com/vi/Zero0Y6TCA8/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Zero0Y6TCA8/related',ord:'14'},{id:'nZMwKPmsbWE',title:'End Of Ze World',author:'birdman12078',real_length:'92',length_seconds:'01:32',rating_avg:'4.8773613',rating_count:'35201',view_count:'7740439',description:'*Have some common sense, I didn\'t make this*',tags:'End, of, the, ze, world, funny, flash, swf, very',thumbnail_url:'http://i.ytimg.com/vi/nZMwKPmsbWE/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/nZMwKPmsbWE/responses',ord:'15'},{id:'wxQsLLOYC7Q',title:'Everything 2012 Earth Changes Part 1 of  3',author:'zerosum2012',real_length:'599',length_seconds:'09:59',rating_avg:'4.4780846',rating_count:'1232',view_count:'617088',description:'Everything 2012 is what I have laying around I thought other\'s would want to see. I actually have more so a sequel may be in the works. Hope you enjoy it.Peace...',tags:'2012, Mayan, Calendar, earth, changes, pole, shift, end, of, the, world, prophecy, apocalypse',thumbnail_url:'http://i.ytimg.com/vi/wxQsLLOYC7Q/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/wxQsLLOYC7Q/responses',ord:'16'},{id:'jT4hrd6To2k',title:'Everything 2012 Earth Changes Part 2 of  3',author:'zerosum2012',real_length:'594',length_seconds:'09:54',rating_avg:'4.727969',rating_count:'522',view_count:'216817',description:'Everything 2012 is what I have laying around I thought other\'s would want to see. I actually have more so a sequel may be in the works. Hope you enjoy it.Peace...',tags:'2012, Mayan, Calendar, earth, changes, pole, shift, end, of, the, world, prophecy, apocalypse',thumbnail_url:'http://i.ytimg.com/vi/jT4hrd6To2k/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/jT4hrd6To2k/responses',ord:'17'},{id:'Nb8DUJFw70g',title:'Everything 2012 Earth Changes Part 3 of 3',author:'zerosum2012',real_length:'569',length_seconds:'09:29',rating_avg:'4.545639',rating_count:'493',view_count:'174571',description:'Everything 2012 is what I have laying around I thought other\'s would want to see. I actually have more so a sequel may be in the works. Hope you enjoy it.',tags:'2012, Mayan, Calendar, earth, changes, pole, shift, end, of, the, world, prophecy, apocalypse',thumbnail_url:'http://i.ytimg.com/vi/Nb8DUJFw70g/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Nb8DUJFw70g/responses',ord:'18'},{id:'yNTRIgt4dBE',title:'Nibiru: Planet X Nibiru',author:'bikini1212',real_length:'628',length_seconds:'10:28',rating_avg:'4.641667',rating_count:'360',view_count:'181446',description:'http://www.planetxvideo.com In 1976, Zecharia Sitchin stirred up a great deal of controversy with the publication of his book, The Twelfth Planet. In this and subsequent books, Sitchin presented his literal translations of ancient Sumerian texts which told an incredible story about the origins of humankind on planet Earth - a story far different and much more fantastic than what we all learned in school.The ancient cuneiform texts - some of the earliest known writing, dating back some 6,000 years - told the story of a race of beings called the Anunnaki. The Anunnaki came to Earth from a planet in our solar system called Nibiru, according to the Sumerians via Sitchin. If you\'ve never heard of it, that\'s because mainstream science does not recognize Nibiru as one of the planets that revolves around our Sun. Yet it is there, claims Sitchin, and its presence holds great importance not only for humankind\'s past, but our future as well.Nibiru\'s orbit around the Sun is highly elliptical, according to Sitchin\'s books, taking it out beyond the orbit of Pluto at its farthest point and bringing it as close to the Sun as the far side of the asteroid belt (a ring of asteroids that is known to occupy a band of space between the orbits of Mars and Jupiter). It takes Nibiru 3,600 years to complete one orbital journey, and it was last in this vicinity around 160 B.C.E. As you can imagine, the gravitational effects of a sizable planet moving close to the inner solar system, as it is claimed for Nibiru, could wreak havoc on the orbits of other planets, disrupt the asteroid belt and spell big trouble for planet Earth.Well, prepare for yet another possible apocalypse because, they say, Nibiru is once again heading this way - and will be here soon.Nibiru: Planet X Nibiru Anunnaki Nephilim Zecaharia Sitchin Lloyd Pye Planet X nibiru Earth Mars alien ufo human dna genetic sumerian sumeria Planet X Nibiru',tags:'2012, prophecy, return, god, gods, alien, ufo, dna, genetic, human, hybrid, race, mixed, reptilian, confirmed, sitchin, nibiru, planet, planet X',thumbnail_url:'http://i.ytimg.com/vi/yNTRIgt4dBE/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/yNTRIgt4dBE/responses',ord:'19'},{id:'Eqxx35A07r4',title:'Did Edgar Cayce speak about 2012? Kevin Todeschi answers your questions',author:'edgarcaycetv',real_length:'357',length_seconds:'05:57',rating_avg:'4.678571',rating_count:'84',view_count:'20931',description:'What, if anything, did the Edgar Cayce readings have to say about 2012, and the arrival of a New Age? Executive director and CEO of Edgar Cayces A.R.E., Kevin Todeschi, answers your question in this short video.A New World Order in this context is not about the supremacy of certain nations over other nations; instead, it is about a new focus for the world as a whole. That focus is about truly understanding that each and every one of us is Our Brothers/Sisters Keeper. In other words, we  as individuals and as nations  are responsible for every single individual who is less fortunate than ourselves. The Edgar Cayce readings describe that responsibility in this way: make of thine OWN heart an understanding that thou must answer for thine own brother, for thine own neighbor! and who is thine neighbor?  He that lives next door, or he that lives on the other side of the world? He, rather, that is in NEED of understanding! He who has faltered; he who has fallen even by the way. HE is thine neighbor, and thou must answer for him! (Edgar Cayce reading #3976-8) From Cayces perspective, the next Age will eventually embody an understanding of this focus.',tags:'Kevin Todeschi, Jennie Taylor Martin, A.R.E., 2012, Edgar Cayce, Cayce, Edgar Cayce readings, New Age, Aquarian Age',thumbnail_url:'http://i.ytimg.com/vi/Eqxx35A07r4/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Eqxx35A07r4/responses',ord:'20'},{id:'SrdpMRvGtlA',title:'science about 2012',author:'vamsikrishnaravi',real_length:'590',length_seconds:'09:50',rating_avg:'4.7045455',rating_count:'44',view_count:'21800',description:'this is series of videos where some of the astronomers, phsycists, and intellects try to decode what is gonna happen in 2012 and beyond......',tags:'maya, mayan, egypt, 2012, doomsday, december21, end, of, earth, astronomical, events',thumbnail_url:'http://i.ytimg.com/vi/SrdpMRvGtlA/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/SrdpMRvGtlA/responses',ord:'21'},{id:'2ahoPGzL50Q',title:'2012: Pole Shift',author:'rep0eagle',real_length:'577',length_seconds:'09:37',rating_avg:'4.5741935',rating_count:'775',view_count:'402313',description:'10 Minute Commentary on pole shift and 2012.Brooks Agnew\'s websitehttp://www.arkofmillionsofyears.com/Phoenix Science Foundationhttp://www.phoenixsciencefoundation.org Coast to Coast AM official websitehttp://www.coasttocoastam.com more info on December 21st, 2012http://www.december212012.com',tags:'pole, shift, 2012, december, 21, end, of, the, world, mayan, prophecy, nostradamus, global, warming, apocalypse, doomsday',thumbnail_url:'http://i.ytimg.com/vi/2ahoPGzL50Q/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/2ahoPGzL50Q/responses',ord:'22'},{id:'GUtPRyXgO0A',title:'Bracing for Tomorrow. Horizon Project',author:'Planetgonenuts',real_length:'413',length_seconds:'06:53',rating_avg:'4.397759',rating_count:'357',view_count:'163965',description:'Newly discovered scientific evidence shows that the world as we know it is about to come to an unexpected end. To purchase your very own FULL copy of this astounding video please visit www.thehorizonproject.com',tags:'nwo, armegeddon, apocalypse, ufo, brent, miller, global, warming, pole, shift, disaster, catastrophy, event, remote, viewing, srv',thumbnail_url:'http://i.ytimg.com/vi/GUtPRyXgO0A/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/GUtPRyXgO0A/responses',ord:'23'},{id:'v9e2QnIK_ek',title:'Reality TV',author:'CharlieFrost2012',real_length:'106',length_seconds:'01:46',rating_avg:'4.8867927',rating_count:'53',view_count:'2126',description:' ',tags:'Reality, TV',thumbnail_url:'http://i.ytimg.com/vi/v9e2QnIK_ek/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/v9e2QnIK_ek/responses',ord:'24'},{id:'E6sacYtxSEc',title:'I Ching',author:'CharlieFrost2012',real_length:'108',length_seconds:'01:48',rating_avg:'4.520548',rating_count:'73',view_count:'134957',description:' ',tags:'I, Ching',thumbnail_url:'http://i.ytimg.com/vi/E6sacYtxSEc/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/E6sacYtxSEc/responses',ord:'25'},{id:'JYenE8NG-_o',title:'Nostradamus',author:'CharlieFrost2012',real_length:'111',length_seconds:'01:51',rating_avg:'4.71875',rating_count:'64',view_count:'56642',description:'',tags:'Nostradamus, Phophecy',thumbnail_url:'http://i.ytimg.com/vi/JYenE8NG-_o/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/JYenE8NG-_o/responses',ord:'26'},{id:'A-FQYT6hXbE',title:'Kulculcan',author:'CharlieFrost2012',real_length:'103',length_seconds:'01:43',rating_avg:'4.6666665',rating_count:'57',view_count:'48717',description:'Check out my full blog at http://ThisIsTheEnd.com',tags:'05, Kulculcan',thumbnail_url:'http://i.ytimg.com/vi/A-FQYT6hXbE/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/A-FQYT6hXbE/responses',ord:'27'},{id:'QGtWxUZ-z-M',title:'IHC PSA',author:'NYCRocks09',real_length:'33',length_seconds:'00:33',rating_avg:'4.2727275',rating_count:'11',view_count:'19580',description:'',tags:'IHC, 2012, commercial, theihc.com',thumbnail_url:'http://i.ytimg.com/vi/QGtWxUZ-z-M/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/QGtWxUZ-z-M/responses',ord:'28'}]},
		initialize: function () {this.createP()}

};
var IDTVLBDataSourcec6ced1f34cIF = function () {IDTVLBDataSourcec6ced1f34c.initialize.apply(IDTVLBDataSourcec6ced1f34c, []);};
if (document.getElementById('IDTVP_c6ced1f34c'))
	IDTVLBDataSourcec6ced1f34cIF ();
else if (window.addEventListener)
	window.addEventListener("load", IDTVLBDataSourcec6ced1f34cIF, true);
else
	window.attachEvent("onload", IDTVLBDataSourcec6ced1f34cIF);