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_208489f46f')[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/208489f46f/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 IDTVLBDataSource208489f46f = {
	id: '208489f46f', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 430, height: 200, pp: 8,
	rows: 2, cols: 4,
	plw: 350, plh: 270,
	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: 'N',
	pldelta: 0,
		data: {results: [{id:'aJnp2iaIunM',title:'[Animasia 2010] Teaser #2',author:'MandoraTv',real_length:'312',length_seconds:'05:12',rating_avg:'',rating_count:'',view_count:'8',description:'Une autre séquence de la chaîne culte avec un nouvel épisode de "Personnages célèbres.',tags:'Animasia, 2010, teaser, Jackie, Chan',thumbnail_url:'http://i.ytimg.com/vi/aJnp2iaIunM/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/aJnp2iaIunM/responses',ord:''},{id:'52XXbwBFdoQ',title:'[Animasia 2010] Teaser  #1',author:'MandoraTv',real_length:'306',length_seconds:'05:06',rating_avg:'',rating_count:'',view_count:'10',description:'Voici des extraits issus de la célèbre chaîne Animasia TV avec sa non moins célèbre émission "Personnages Célèbres..."',tags:'Animasia, 2010, teaser, Miyazaki, Totoro, Michel, Dépèche',thumbnail_url:'http://i.ytimg.com/vi/52XXbwBFdoQ/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/52XXbwBFdoQ/responses',ord:'1'},{id:'l_Xz9ZCBTZc',title:'[Animasia 2009]  Petit Homme Costumé - Michel Dépêche',author:'MandoraTv',real_length:'221',length_seconds:'03:41',rating_avg:'',rating_count:'',view_count:'15',description:'Le clip du chanteur de variété 70\'s préféré des français, Michel Dépèche et son hit "Petit Homme Costumé". Le clip a été réalisé à partir d\'images d\'archives des émissions de l\'INA par Jonathan du célèbre duo David et Jonathan.',tags:'animasia, 2010, michel, dépêche',thumbnail_url:'http://i.ytimg.com/vi/l_Xz9ZCBTZc/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/l_Xz9ZCBTZc/responses',ord:'2'},{id:'obXdbPVFXbU',title:'[Animasia 2009] Concert de dessin des Lemmings',author:'MandoraTv',real_length:'169',length_seconds:'02:49',rating_avg:'',rating_count:'',view_count:'17',description:'Concert de dessin proposé par l\'association Les lemmings,le dimanche 5 avril 2009.',tags:'Animasia, 2009, Mandora, dessin, concert, lemmings',thumbnail_url:'http://i.ytimg.com/vi/obXdbPVFXbU/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/obXdbPVFXbU/responses',ord:'3'},{id:'uOp9lRrengQ',title:'[Animasia 2009] Kamizumo - Tournoi',author:'MandoraTv',real_length:'46',length_seconds:'00:46',rating_avg:'',rating_count:'',view_count:'183',description:'Tournoi de kamizumo lors d\'Animasia 2009. Samedi 4 avril, après-midi.',tags:'kamizumo, animasia, 2009',thumbnail_url:'http://i.ytimg.com/vi/uOp9lRrengQ/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/uOp9lRrengQ/responses',ord:'4'},{id:'to-Iks1GcQg',title:'[Animasia 2009] Kamishibaï',author:'MandoraTv',real_length:'332',length_seconds:'05:32',rating_avg:'',rating_count:'',view_count:'366',description:'Animation proposée par Jean Loustic le samedi 4 avril.',tags:'kamishibaï, jean, loustic, animasia, 2009',thumbnail_url:'http://i.ytimg.com/vi/to-Iks1GcQg/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/to-Iks1GcQg/responses',ord:'5'},{id:'YDzTNLfFC88',title:'[Animasia 2009] Extrait JDR',author:'MandoraTv',real_length:'278',length_seconds:'04:38',rating_avg:'',rating_count:'',view_count:'25',description:'Loups-garous de Tiercelieux',tags:'animasia, 2010, Dragons, trésors, et, contes',thumbnail_url:'http://i.ytimg.com/vi/YDzTNLfFC88/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/YDzTNLfFC88/responses',ord:'6'},{id:'39cLoItIB1M',title:'Bordeaux - Animasia 2009 - Partie 1 : Caramelldansen et Cosplay',author:'ZMaster19',real_length:'480',length_seconds:'08:00',rating_avg:'4.0',rating_count:'3',view_count:'927',description:'Hop ici le blondinet chapeauté à caméra qui passait par là à Animasia.Je voyais pas la vidéo si longue et je voulais pas me résoudre à couper tout ces bons moments. Donc je ferais une deuxiéme partie bientôt.En attendant, merci déjà aux Caramelldanseurs et cosplayeurs, à Mandora, Katia, sans qui rien n\'aurait été possible. ;) Et surtout bravo !Désolé pour les flous incessants de ma caméra et pour ceux n\'apparaissant pas. :(.Si certains n\'aiment pas être sur la vidéo, n\'hésitez pas à m\'en faire part.Musiques :Starfox - Corneria theme (Super Smash Bros. Brawl mix)Caramelldansen (Caramell)Hare Hare Yukai (Suzumiya Haruhi no yūutsu)',tags:'Convention, otaku, cosplay, hare, yukai, caramelldansen, animasia, 2009, katia, Z-Master',thumbnail_url:'http://i.ytimg.com/vi/39cLoItIB1M/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/39cLoItIB1M/responses',ord:'7'},{id:'dAnS2Zgx4Dk',title:'[Animasia 2009] Cosplay  - Silent Hill',author:'MandoraTv',real_length:'82',length_seconds:'01:22',rating_avg:'5.0',rating_count:'5',view_count:'571',description:'Cosplay de notre tortue bénévole, transformée pour l\'occasion en infirmière-zombie. Attention au baiser de la mort !',tags:'cosplay, animasia, 2009, zombie, infirmière, papillon, lumière, silent, hill',thumbnail_url:'http://i.ytimg.com/vi/dAnS2Zgx4Dk/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/dAnS2Zgx4Dk/responses',ord:'8'},{id:'ye_YvtlKUNs',title:'[Animasia 2009] Cosplay Final Fantasy',author:'MandoraTv',real_length:'140',length_seconds:'02:20',rating_avg:'',rating_count:'',view_count:'8',description:'',tags:'Animasia, 2009, Cosplay, Final, Fantasy',thumbnail_url:'http://i.ytimg.com/vi/ye_YvtlKUNs/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/ye_YvtlKUNs/responses',ord:'9'},{id:'JFTrHtsxvQY',title:'AnimAsia \'09 : Reportage (Part.1)',author:'sailorsatelite020712',real_length:'411',length_seconds:'06:51',rating_avg:'5.0',rating_count:'1',view_count:'182',description:'Contact organisation:http://www.animasia.orghttp://www.asso-mandora.orgContact réalisation:http://digintegrated.livejournal.comUn reportage made in "Der Jäger from CODED-CAMS" sur le festival AnimAsia 2009. Merci aux orgas et aussi à ceux qui ont joué le jeu de l\'interview ^_^',tags:'animasia, 2009, reportage, CODED, CAMS',thumbnail_url:'http://i.ytimg.com/vi/JFTrHtsxvQY/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/JFTrHtsxvQY/responses',ord:'10'},{id:'X-pyZFtTqVM',title:'AnimAsia \'09 : Reportage (Part.2)',author:'sailorsatelite020712',real_length:'363',length_seconds:'06:03',rating_avg:'5.0',rating_count:'2',view_count:'252',description:'Contact organisation:http://www.animasia.orghttp://www.asso-mandora.orgContact réalisation:http://digintegrated.livejournal.comUn reportage made in "Der Jäger from CODED-CAMS" sur le festival AnimAsia 2009. Merci aux orgas, à ceux qui ont joué le jeu de l\'interview et aussi à ceux qui ont rendu visite à mon p\'tit stand ^_^ Rendez-vous en 2010?',tags:'animasia, 2009, reportage, CODED, CAMS',thumbnail_url:'http://i.ytimg.com/vi/X-pyZFtTqVM/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/X-pyZFtTqVM/responses',ord:'11'},{id:'reCQ3x3uIuU',title:'[Animasia 2009] Kamizumo - le teasing',author:'MandoraTv',real_length:'33',length_seconds:'00:33',rating_avg:'',rating_count:'',view_count:'100',description:'Teasing pour Animasia 2009 : présentation du kamizumo par Katia.',tags:'animasia, 2009, kamizumo',thumbnail_url:'http://i.ytimg.com/vi/reCQ3x3uIuU/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/reCQ3x3uIuU/responses',ord:'12'},{id:'9RicCteEXmQ',title:'[Animasia 2009] Teasing',author:'MandoraTv',real_length:'136',length_seconds:'02:16',rating_avg:'',rating_count:'',view_count:'8',description:'Animasia 2009, du jeudi 2 au dimanche 5 avril 2009, au centre culturel Jean-Eustache de Pessac.',tags:'Animasia, 2009, Jean-Eustache, Pessac',thumbnail_url:'http://i.ytimg.com/vi/9RicCteEXmQ/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/9RicCteEXmQ/responses',ord:'13'},{id:'dtPwPcb0bd4',title:'[Animasia 2008] Concert One Winged Pianist',author:'MandoraTv',real_length:'545',length_seconds:'09:05',rating_avg:'',rating_count:'',view_count:'11',description:'Concert de Kad lors du festival Animasia 2008.',tags:'Animasia, 2008, One, winged, pianiste, musique, anime, concert',thumbnail_url:'http://i.ytimg.com/vi/dtPwPcb0bd4/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/dtPwPcb0bd4/responses',ord:'14'},{id:'-0EPapUKoXs',title:'[Animasia 2008] John Cassaveste Meets Cosplay',author:'MandoraTv',real_length:'283',length_seconds:'04:43',rating_avg:'',rating_count:'',view_count:'18',description:'Introduction au cosplay d\'Animasia 2009, par Nanouk & Yon.',tags:'Animasia, 2009, cosplay, Michel, Cassaveste, introduction',thumbnail_url:'http://i.ytimg.com/vi/-0EPapUKoXs/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/-0EPapUKoXs/responses',ord:'15'},{id:'cEaBjiIRIUo',title:'Hinoi Team & Korikki - Night of fire - cosplay Animasia 2007',author:'marjolafrite',real_length:'219',length_seconds:'03:39',rating_avg:'4.3333335',rating_count:'117',view_count:'49308',description:'Cosplay d\'Hinoi Team - Night of fire- par mes copines, moi-même et bien sûr notre supermâle!C\'était super! Fiiiiiirrreee',tags:'Hinoi, team, night, of, fire, cosplay, para, parapara, animasia, korikki, 2007',thumbnail_url:'http://i.ytimg.com/vi/cEaBjiIRIUo/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/cEaBjiIRIUo/responses',ord:'16'},{id:'oIYmvMvi644',title:'Animasia 2007 Cosplay Groupe Bleach Band',author:'Meluteki',real_length:'330',length_seconds:'05:30',rating_avg:'4.7348485',rating_count:'132',view_count:'28458',description:'La prestation de la Bleach Band au cosplay groupe d\'Animasia 2007. Filia as Matsumoto RangikuSora as Hitsugaya TôshiroAylinn as Yoruichi Shihouin Aldenoer as Kyouraku ShunsuiWarashi as Menos GrandeMiaka as Retsu UnohanaAkumi as Kuchiki RukiaPirika as Inoue OrihimePen² as Hisagi ShuheiEnjoy! :)',tags:'Animasia, 2007, Cosplay, Groupe, Bleach, Band',thumbnail_url:'http://i.ytimg.com/vi/oIYmvMvi644/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/oIYmvMvi644/responses',ord:'17'},{id:'iiUV6pqVpQQ',title:'[Animasia 2007] Cosplay & Arts Martiaux.flv',author:'MandoraTv',real_length:'65',length_seconds:'01:05',rating_avg:'',rating_count:'',view_count:'10',description:'',tags:'Animasia, 2007, Cosplay, &, Arts, Martiaux',thumbnail_url:'http://i.ytimg.com/vi/iiUV6pqVpQQ/2.jpg',upload_time:'0',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/iiUV6pqVpQQ/responses',ord:'18'}]},
		initialize: function () {this.createP()}

};
var IDTVLBDataSource208489f46fIF = function () {IDTVLBDataSource208489f46f.initialize.apply(IDTVLBDataSource208489f46f, []);};
if (document.getElementById('IDTVP_208489f46f'))
	IDTVLBDataSource208489f46fIF ();
else if (window.addEventListener)
	window.addEventListener("load", IDTVLBDataSource208489f46fIF, true);
else
	window.attachEvent("onload", IDTVLBDataSource208489f46fIF);