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_b38af0062c')[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/b38af0062c/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 IDTVLBDataSourceb38af0062c = {
	id: 'b38af0062c', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 660, height: 431, pp: 15,
	rows: 3, cols: 5,
	plw: 600, plh: 500,
	createP: function () {this.p = new IDTVVWP(this); },
	plpl: 'newwin',
	only_public:true,mark_private:true,
	thumb_show_title : true, thumb_show_author : false,
	thumb_show_rating : false, thumb_show_views: false,
	thumb_show_length : false, thumb_show_description : false,
	thumb_show_labels : false,
	thumbnail_text: 'B',
	pldelta: 0,
data: {sid:1, loadToCache:false, total: 29, pgs:1, results: [{id:'FIkOcrgHBfc',title:'Madeline Hudson Performing Live at Peats Ridge Music Festival',author:'Live2UTV',real_length:'125',length_seconds:'02:05',rating_avg:'0',rating_count:'',view_count:'25',description:'Madeline Hudson is an independent Australian Musician based in Melbourne. She is an amazing singer/songwriter with haunting vocals. Madeline is proudly supported by www.live2u.com.au',tags:'Madeline Hudson, Australian singer, Folk Singer, live2u',thumbnail_url:'http://img.youtube.com/vi/FIkOcrgHBfc/default.jpg',upload_time:'1280484747',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/FIkOcrgHBfc/responses?v=2',ord:'0',isprivate:'',t:'v'}, {id:'2R6WZcvbbU4',title:'An Enchanted Eve 2010 - Masquerade Ball Port Macquarie',author:'Live2UTV',real_length:'227',length_seconds:'03:47',rating_avg:'5',rating_count:'1',view_count:'108',description:'Another Live2U Production, An Enchanted Eve was a grand night of entertainment including Aerialist, fire performers, illusionists, magic and live music! The dress was Masquerade or Elaborate Fancy Dress, and patrons didn\'t disapoint when they frocked up for this event. Musical Performances by Grant Walmsley and The Agents of Peace, The Dark Shadows and Madeline Hudson. Presented by Live2u.com.au &amp; Little Red Vamp',tags:'Live2u, Little Red Vamp, The Agents of Peace, Grant Walmsley, The Dark Shadows, Bridgette Handley, Madeline Hudson, Sister Manic, An Enchanted Eve, Masquerade Ball, Live2u Event',thumbnail_url:'http://img.youtube.com/vi/2R6WZcvbbU4/default.jpg',upload_time:'1278081393',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/2R6WZcvbbU4/responses?v=2',ord:'1',isprivate:'',t:'v'}, {id:'SbKbFxFFNd0',title:'An Enchanted Eve - Masquerade Ball Port Macquarie 26 June 2010',author:'Live2UTV',real_length:'47',length_seconds:'00:47',rating_avg:'5',rating_count:'2',view_count:'82',description:'An Enchanted Eve is your opportunity to dress up in elaborate fancy dress costume or Masquerade and enjoy an evening of live music, caberet shows, short films, circus sideshows and much much more. 5 hours of entertainment featuring Grant Walmsley &amp; The Agents of Peace, Madeline Hudson, The Dark Shadows, Dangerboy and Phantasia Troup. Tickets onsale now through oztix Hosted by Little Red Vamp and Live2u.com.au',tags:'sneek peak, An Enchanted Eve, Preview, Live Music, Port Macquarie, Masquerade Ball, Live2u, Little Red Vamp, Port Macquarie Masquerade Ball, Live Show, Grant Walmsley, The Dark Shadows, Madeline Hudson',thumbnail_url:'http://img.youtube.com/vi/SbKbFxFFNd0/default.jpg',upload_time:'1276604575',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/SbKbFxFFNd0/responses?v=2',ord:'2',isprivate:'',t:'v'}, {id:'ouSo6KvBJBU',title:'River City Rumblers - Music Interview on Live2U TV',author:'Live2UTV',real_length:'297',length_seconds:'04:57',rating_avg:'4.2',rating_count:'5',view_count:'995',description:'The River City Rumblers are a youth group from Kempsey belting out Rockabilly style tunes. The group recently made it through the Audition process for Australia\'s Got Talent, proving how much these kids have to offer. The River City Rumblers warmed the crowd for Sydney band, The Rumjacks at a Fame &amp; Follies event at Town Green Hotel in Port Macquarie and we caught up with them backstage for this interview.',tags:'River City Rumblers, Aussie Rockabilly, Australian Rock and Roll, Australian Rockabilly, RCR, live2u TV, Music Interview',thumbnail_url:'http://img.youtube.com/vi/ouSo6KvBJBU/default.jpg',upload_time:'1270898131',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/ouSo6KvBJBU/responses?v=2',ord:'3',isprivate:'',t:'v'}, {id:'hGTrzBjiCvY',title:'The Panics - Interview on Live2UTV at Peats Ridge Festival',author:'Live2UTV',real_length:'345',length_seconds:'05:45',rating_avg:'0',rating_count:'',view_count:'64',description:'The Panics, Australian Indie Rock Band whose music featured in TV shows such as Underbelly and Ugly Betty, talk to Sister Manic just prior to their performance at Peats Ridge Festival. The guys are relaxed and happy to express their opinions about what they would like to see happen in the Australian Live Music Scene, who in the group woud be the one most likely arrested and their views on other random topics. Get up close and personal with Australian band, The Panics.',tags:'The Panics, Indie Rock Band, live2utv, Peats Ridge Music Festival, Peats Ridge, Panics, cruel guards, dontfightit band, australian, indie, alternative, underbelly, ugly betty',thumbnail_url:'http://img.youtube.com/vi/hGTrzBjiCvY/default.jpg',upload_time:'1267787512',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/hGTrzBjiCvY/responses?v=2',ord:'4',isprivate:'',t:'v'}, {id:'zLGe5PziOWU',title:'TOM UGLY - Interview on LIve2UTV at Peats Ridge Festival',author:'Live2UTV',real_length:'285',length_seconds:'04:45',rating_avg:'5',rating_count:'2',view_count:'222',description:'Tom Ugly, alternative electronic Indie rock/melodramatic pop band are just out of highschool and winners of the Tripple J High School Unearthed Competition. Sister Manic interviews Tom Ugly at Peats Ridge Festival and gets the gossip straight from the source on what it means to be thrown into the spotlight at such a young age and what\'s install for them in 2010.',tags:'Tom Ugly, alternative, electronica, Indie Rock, live2utv, Music Interview, Peats Ridge Music Festival',thumbnail_url:'http://img.youtube.com/vi/zLGe5PziOWU/default.jpg',upload_time:'1267609463',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/zLGe5PziOWU/responses?v=2',ord:'5',isprivate:'',t:'v'}, {id:'-wRaTBm8sLE',title:'THE TONGUE - Australian Hip Hop Artist/Freestyle Battler Interview on Live2UTV',author:'Live2UTV',real_length:'370',length_seconds:'06:10',rating_avg:'5',rating_count:'2',view_count:'363',description:'The Tongue is not afraid to speak his mind, he is passionate and honest in this interview on Live2UTV at Peats Ridge Music Festival. Find out why The Tounge thinks \'shrooms\' should be provided to performers at Festivals, discover who he finds inspiring and watch some impromptu freestyle.',tags:'The Tongue, Australian Hip Hop, Freestyle Battle, Music Interview, live2utv, Magic Mushrooms, Australian Comedy',thumbnail_url:'http://img.youtube.com/vi/-wRaTBm8sLE/default.jpg',upload_time:'1267524073',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/-wRaTBm8sLE/responses?v=2',ord:'6',isprivate:'',t:'v'}, {id:'BxHNTqzS1U0',title:'Blue King Brown - Australian Music Interview on Live2UTV at Peats Ridge Festival',author:'Live2UTV',real_length:'236',length_seconds:'03:56',rating_avg:'3',rating_count:'2',view_count:'161',description:'Natalie from Blue King Brown chats to Sister Manic from Live2UTV just prior to their New Years Eve performance at Peats Ridge Music Festival. Blue King Brown is a passionate Australian Roots Rega group that like to voice a message through their music about the issues they believe in, stand for and fight for. Get to know Natalie on a more personal level through this relaxed interview.',tags:'Blue King Brown, Roots Rega, Australian Rega, Peats Ridge Festival, live2utv',thumbnail_url:'http://img.youtube.com/vi/BxHNTqzS1U0/default.jpg',upload_time:'1266753088',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/BxHNTqzS1U0/responses?v=2',ord:'7',isprivate:'',t:'v'}, {id:'BTJlINSL6UY',title:'The Crooked Fiddle Band - Peats Ridge NYE Interview on Live2UTV',author:'Live2UTV',real_length:'387',length_seconds:'06:27',rating_avg:'0',rating_count:'',view_count:'26',description:'The Crooked Fiddle Band chat with Sister Manic (dressed as the Living Dead for Fancy Dress on NYE) at Peats Ridge. Self described as Gypsy thrash, this unique high energy Independent Australian band are something really different.',tags:'The Crooked Fiddle Band, Crooked Fiddle, Gypsy Music, Australian Music, live2utv, Music interviewpunk',thumbnail_url:'http://img.youtube.com/vi/BTJlINSL6UY/default.jpg',upload_time:'1266236708',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/BTJlINSL6UY/responses?v=2',ord:'8',isprivate:'',t:'v'}, {id:'rtBsDVivOY8',title:'The Strides Interview with Live2UTV at Peats Ridge Festival',author:'Live2UTV',real_length:'303',length_seconds:'05:03',rating_avg:'0',rating_count:'',view_count:'129',description:'The Strides played at Peats Ridge Festival, Ronnie and Al chat to Sista about the band and other random stuff. They have a massive year ahead and these guys claim to have a unique sound, a mix of Rega/Aftro Beats, Jazz and World Beats.....check our our interview with Aussie Band, The Strides',tags:'The Strides, live2utv, Afro Beats, Rega, Australian Music, Music Interview, Peats Ridge Music Festival',thumbnail_url:'http://img.youtube.com/vi/rtBsDVivOY8/default.jpg',upload_time:'1266129582',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/rtBsDVivOY8/responses?v=2',ord:'9',isprivate:'',t:'v'}, {id:'3hRSP1vCBms',title:'Chase The Sun - Interview on Live2UTV at Peats Ridge Festival',author:'Live2UTV',real_length:'312',length_seconds:'05:12',rating_avg:'0',rating_count:'',view_count:'95',description:'Chase the Sun fellas, Jan &amp; Ryan chat with Sista soon after their performance at Peats Ridge Festival 2009. Chase The Sun are down to earth and are not unsettled by Sista\'s in-your-face sarcasm and quirky sense of humour. Chase the Sun talk about their upcoming tour to Japan and the release of their new album or is it a record? Get to know the Band Chase the Sun through this candid interview.',tags:'Chase the Sun, Peats Ridge Music Festival, live2utv, Australian Rock, Australian Blues, Blues and Roots, Music Festival',thumbnail_url:'http://img.youtube.com/vi/3hRSP1vCBms/default.jpg',upload_time:'1266121780',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/3hRSP1vCBms/responses?v=2',ord:'10',isprivate:'',t:'v'}, {id:'cXs1vfcrAHI',title:'Mama Kin - Interview on Live2UTV at Peats Ridge Festival 2009',author:'Live2UTV',real_length:'288',length_seconds:'04:48',rating_avg:'5',rating_count:'1',view_count:'386',description:'Mama Kin, Danielle tells Sista what rootsie band Mama Kin is all about, what is happening for them over the next 12 months and what life is like for a busy musician mum. A truely lovely, humble and natural lady who oozes appeal. Mama Kin performed at Peats Ridge Festival on New Years Eve 2009.',tags:'Mama Kin, music interview, mama kin interview, Peats Ridge Music Festival, live2utv, Australian Blues & Roots, Blues and Roots',thumbnail_url:'http://img.youtube.com/vi/cXs1vfcrAHI/default.jpg',upload_time:'1265534668',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/cXs1vfcrAHI/responses?v=2',ord:'11',isprivate:'',t:'v'}, {id:'7bC1MyUnH7U',title:'Ash Grunwald - Interview on Live2UTV at Peats Ridge Festival',author:'Live2UTV',real_length:'311',length_seconds:'05:11',rating_avg:'5',rating_count:'1',view_count:'197',description:'Ash Grunwald chats with Sista in the Media Tent at Peats Ridge Festival. Ash Grunwald talks about what he has coming up over the next 12 months and who he will be collaborating with to bring a new dimension to his blues and roots inspired music. Another great, unique Australian Musician.',tags:'Ash Grunwald, live2utv, Peats Ridge Festival, Peats Ridge Music Festival, Music Interview, Australian Blues and Roots, Blues & Roots',thumbnail_url:'http://img.youtube.com/vi/7bC1MyUnH7U/default.jpg',upload_time:'1265511150',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/7bC1MyUnH7U/responses?v=2',ord:'12',isprivate:'',t:'v'}, {id:'d4gD4EUDPqg',title:'Lost Valentinos Interview on Live2UTV at Peats Ridge Music Festival 2009',author:'Live2UTV',real_length:'339',length_seconds:'05:39',rating_avg:'0',rating_count:'',view_count:'37',description:'Live2UTV catch up with a couple of the fellas from the Lost Valentinos whilst they are at Peats Ridge Music Festival. The guys are full of sarcasm so cope easily with Sista\'s banter! A fun interview providing an insight into what this band is all about.',tags:'Lost Valentinos, live2utv, Peats Ridge Music Festival, Peats Ridge Festival, Peats Ridge 09, Australian Music, Australian Indie, Music Interview, Sister Manic',thumbnail_url:'http://img.youtube.com/vi/d4gD4EUDPqg/default.jpg',upload_time:'1265456539',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/d4gD4EUDPqg/responses?v=2',ord:'13',isprivate:'',t:'v'}, {id:'2tR_0lPN_8g',title:'Peats Ridge Music Festival - Sustainable Arts Festival',author:'Live2UTV',real_length:'89',length_seconds:'01:29',rating_avg:'0',rating_count:'',view_count:'77',description:'Peats Ridge Music Festival - Live2U TV spent 3 days/nights at Peats Ridge Music Festival, enjoying the festival as punters and going backstage to catch up with various musicians. Interview with Ash Grunwald, Mama Kin, The Lost Valentinos, Tom Ugly, The Panics, The Tonge, Ozi Batla, The Crooked Fiddle Band and much, more. www.live2utv.com',tags:'Peats Ridge Music Festival, Ash Grunwald, Peats Ridge Festival 2009, Sustainable Arts Festival, Glenworth Valley, New Years, Sarah Blasko, Tommee, Solar Power, Deepchild, Tom Ugly, Mama Kin, Party, live2utv',thumbnail_url:'http://img.youtube.com/vi/2tR_0lPN_8g/default.jpg',upload_time:'1265440260',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/2tR_0lPN_8g/responses?v=2',ord:'14',isprivate:'',t:'v'}, {id:'jMh-X1isB8A',title:'RogerThat - Australian Music Interview on Live2UTV',author:'Live2UTV',real_length:'327',length_seconds:'05:27',rating_avg:'0',rating_count:'',view_count:'35',description:'RogerThat. Psychadellic beach music with a hint of garage, this is RogerThat. Live2UTV catch up with a couple of the boys backstage at Festival of the Sun 08. A sidesplitting fun interview with a couple of Aussie Larakins! Lachie tells us a couple of funny stories leaving Jimmy just shaking his head.',tags:'rogerthat, Australian Musician, Australian Comedy, Underwear, live2utv, live2u TV, Festival of the Sun',thumbnail_url:'http://img.youtube.com/vi/jMh-X1isB8A/default.jpg',upload_time:'1263807799',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/jMh-X1isB8A/responses?v=2',ord:'15',isprivate:'',t:'v'}, {id:'u5XhQzk376U',title:'URTHBOY and Jane - Australian Hip-Hop Interview with Live2UTV at Festival of the Sun 2009',author:'Live2UTV',real_length:'407',length_seconds:'06:47',rating_avg:'0',rating_count:'',view_count:'180',description:'Live2UTV interview Australian Independent Hip Hop Artists URTHBOY and Jane. Urthboy has a quirky sarcasm that has the ladies a little baffled tyring to determine if he is serious or joking? A unique interview with the pair backstage at FOTSun 09.',tags:'URTHBOY, Urthboy and Jane, Urthboy & Jane, Hip Hop, Australian Hip Hop, Hip Hop Musician, Australian Hip Hop Musician, The Herd, fotsun, Festival of the Sun, Festival of the Sun 2009, live2utv, Music Interview',thumbnail_url:'http://img.youtube.com/vi/u5XhQzk376U/default.jpg',upload_time:'1263555744',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/u5XhQzk376U/responses?v=2',ord:'16',isprivate:'',t:'v'}, {id:'SC5eybcB4aw',title:'The Beautiful Girls - Music Interview with Live2UTV at Festival of the Sun 2009',author:'Live2UTV',real_length:'601',length_seconds:'10:01',rating_avg:'0',rating_count:'',view_count:'203',description:'Matt from Aussie Bluey Roots Band, The Beautiful Girls goes head to head with Sister Manic backstage at FOTSun 09. Matt reveals some intimate details about his childhood, including a story involving stolen porn magazines. Find out more then you expect about The Beautiful Girls in this up-close and person interview.',tags:'The Beautiful Girls, Beautiful Girls, live2utv, fotsun, Festival of the Sun 2009, Festival of the Sun, Australian Music, Video Interview, Music Interview, Blues and Roots, Australian Rock',thumbnail_url:'http://img.youtube.com/vi/SC5eybcB4aw/default.jpg',upload_time:'1263544248',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/SC5eybcB4aw/responses?v=2',ord:'17',isprivate:'',t:'v'}, {id:'1mFW3Jx7qmY',title:'Red Ink Interview with Live2UTV backstage at Festival of the Sun 2009',author:'Live2UTV',real_length:'361',length_seconds:'06:01',rating_avg:'0',rating_count:'',view_count:'146',description:'Red Ink go ferral backstage at Festival of the Sun 09 with the ladies from Live2UTV. The fella\'s talk about the band, their music and also reveal some kinky stuff about themselves. Another fun interview with an Australian Rock band from Live2UTV and a great FOTSun',tags:'Red Ink, Kinky, live2utv, Austalian Rock, Rock Music, live2u TV, fotsun 09, Festival of the Sun, Indy Rock, redink',thumbnail_url:'http://img.youtube.com/vi/1mFW3Jx7qmY/default.jpg',upload_time:'1263525370',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/1mFW3Jx7qmY/responses?v=2',ord:'18',isprivate:'',t:'v'}, {id:'CKWxDgmVrmU',title:'Grant Walmsley and the Agents of Peace Interview with Live2UTV at Festival of the Sun 2009',author:'Live2UTV',real_length:'515',length_seconds:'08:35',rating_avg:'5',rating_count:'1',view_count:'320',description:'Grant Walmsley backstage at FOTSun 09 with the ladies from Live2UTV. He chats about the band, his opinion of the music industry over 20 years, speaking of his days in the Screaming Jets. A revealing interview with a great Australian Musician.',tags:'Grant Walmsley, Screaming Jets, Australian Musician, Australian Comedy, Music Interview, Rock Musician, fotsun, Festival of the Sun 2009, Festival of the Sun, live2utv, Aussie Music',thumbnail_url:'http://img.youtube.com/vi/CKWxDgmVrmU/default.jpg',upload_time:'1263213939',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/CKWxDgmVrmU/responses?v=2',ord:'19',isprivate:'',t:'v'}, {id:'bx_HE44VLHo',title:'Nathan Kaye Australian Music Interview with Live2UTV backstage at Festival of the Sun 2009',author:'Live2UTV',real_length:'381',length_seconds:'06:21',rating_avg:'0',rating_count:'',view_count:'93',description:'A fun interview with Aussie Independent singer/songwriter Nathan Kaye. Nathan beatboxes using the didgeridoo and Ultra Violet puts him on the spot to play using a Kazoo. A versatile musician with a great sense of humour. Rated M',tags:'Nathan Kaye, Beat Box, Didgeridoo, Australian Musician, Music Interview, Festival of the Sun 2009, Festival of the Sun, Festival of the Sun 09, live2utv, live2u TV, Australian Comedy, fotsun 09, fotsun',thumbnail_url:'http://img.youtube.com/vi/bx_HE44VLHo/default.jpg',upload_time:'1263094038',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/bx_HE44VLHo/responses?v=2',ord:'20',isprivate:'',t:'v'}, {id:'YM7IheExyi4',title:'Pez and Crew Australian Music Interview with Live2UTV backstage at Festival of the Sun 2009',author:'Live2UTV',real_length:'393',length_seconds:'06:33',rating_avg:'5',rating_count:'1',view_count:'525',description:'Pez Aussie Hip Hop Artist (That Festival Song) and Posse, Hayley, Matt and Adrian chat with Sister Manic backstage at Festival of the Sun. Find out what freaky fan story left the fella\'s cleaning up a mess made with a fire extinguisher in a hotel room, who suffers from stage fright and who is the great Aussie Performer lined up to work with Pez on his new album.',tags:'Pez, Australian Rap, Rap Artist, live2utv, Festival of the Sun, Festival of the Sun 2009, Festival of the Sun 09, Music Interview, Comedy, Austalian Comedy, Funny Video, fotsun 09, Festival Song',thumbnail_url:'http://img.youtube.com/vi/YM7IheExyi4/default.jpg',upload_time:'1262997889',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/YM7IheExyi4/responses?v=2',ord:'21',isprivate:'',t:'v'}, {id:'Ca2s3KV-uNw',title:'Children Collide - Australian Music Interview with Live2U TV at Festival of the Sun 2009',author:'Live2UTV',real_length:'459',length_seconds:'07:39',rating_avg:'5',rating_count:'2',view_count:'231',description:'Ryan, Heath and Johnny on the couch with Ultra Violet and Sister Manic for Live2UTV backstage at Festival of the Sun 2009. This trio make Australian Rock Band \'\'Children Collide". These lads have a quirky off-beat sense of humour which makes for an interesting dynamic when teamed up with the zany Live2U ladies. A bit of comedy with some interesting facts about this awesome Aussie Band. Rated M 15+',tags:'Children Collide, Social Currency, Australian Musician, Music Interview, Australian Comedy, live2utv, Live2u TV, Festival of the Sun, Festival of the Sun 09, Festival of the Sun 2009, fotsun 09, fotsun, weird phobia, indie music',thumbnail_url:'http://img.youtube.com/vi/Ca2s3KV-uNw/default.jpg',upload_time:'1262689866',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/Ca2s3KV-uNw/responses?v=2',ord:'22',isprivate:'',t:'v'}, {id:'uBZQW3QfVxc',title:'Spiderbait - Australian Music Interview on Live2UTV at Festival of the Sun 2009',author:'Live2UTV',real_length:'394',length_seconds:'06:34',rating_avg:'5',rating_count:'1',view_count:'214',description:'Spiderbait catchup with Live2UTV after they played at Festival of the Sun 2009. The group reveal some interesting information about themselves and Kram tells us if Spiderbait used green screen/computerised effects for the Black Betty or for his Alicia Molik film clip. Another candid up-close and personal interview from Live2UTV.',tags:'Spiderbait, Australian Music, live2utv, live2u.com.au, Sister Manic, Ultra Violet, Interview, Music Interview, Australian Comedy, Australian Comedians, Black Betty, Fucking Awesome, fotsun 09, fotsun',thumbnail_url:'http://img.youtube.com/vi/uBZQW3QfVxc/default.jpg',upload_time:'1262430087',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/uBZQW3QfVxc/responses?v=2',ord:'23',isprivate:'',t:'v'}, {id:'IDCx0foTQzk',title:'Little Birdy - (Katy Steele) Australian Music Interview at Festival of the Sun 09 on Live2uTV',author:'Live2UTV',real_length:'297',length_seconds:'04:57',rating_avg:'5',rating_count:'4',view_count:'588',description:'Little Birdy, Katy Steele has a girly moment with Sister Manic &amp; Ultra Violet backstage at Festival of the Sun 2009. Katy speaks about her family, life as an Aussie Musician and what she wants for Christmas. A fun Little Birdy Interview.',tags:'Little Birdy, Katy Steele, Festival of the Sun 2009, live2utv, live2u TV, Sexy Girls, Australian Music, Australian Rock, Music Interview, fotsun 09, Little Birdy Interview, fotsun',thumbnail_url:'http://img.youtube.com/vi/IDCx0foTQzk/default.jpg',upload_time:'1261375351',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/IDCx0foTQzk/responses?v=2',ord:'24',isprivate:'',t:'v'}, {id:'5K6gocqpxSk',title:'Philadelphia Grand Jury - Music Interview with Live2UTV at Festival of the Sun 09',author:'Live2UTV',real_length:'222',length_seconds:'03:42',rating_avg:'5',rating_count:'1',view_count:'196',description:'MC Bad Genius and Calvin chat with Live 2U TV prior to performing at Festival of the Sun 2009. Due to sound problems (and our Camera man being MOA for a good part of this interview) we are unable to air the entire footage, but we hope you enjoy the snippets we could salvage.',tags:'Philly Jays, Philadelphia Grand Jury, Live2u TV, Music Interview, Australian Music, Australian Comedy, Funny Video, Festival of the Sun 09, fotsun 09, fotsun',thumbnail_url:'http://img.youtube.com/vi/5K6gocqpxSk/default.jpg',upload_time:'1260952948',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/5K6gocqpxSk/responses?v=2',ord:'25',isprivate:'',t:'v'}, {id:'iSQYXHv3GbU',title:'The Vasco Era (Ted O\'Neil) Interview on Live2U TV',author:'Live2UTV',real_length:'314',length_seconds:'05:14',rating_avg:'0',rating_count:'',view_count:'108',description:'Ted chats with Sister Manic &amp; Ultra Violet about everything from his favourite drinking games to what it feels like when a fan passes out watching a live show. See what happens when the girls blindfold him and ask him to guess what the suspicious object he is holding. Another fun up close and personal interview with a great Australian Musician!',tags:'The Vasco Era, Ted O\'Neil, Festival of the Sun, live2u TV, Vomit, Musician Interview, Australian Comedy, Australian Music, Sister Manic, Ultra Violet, live2u, Blindfold Game, Drinking Game, Australian Comedians, sheeps balls, sheep balls',thumbnail_url:'http://img.youtube.com/vi/iSQYXHv3GbU/default.jpg',upload_time:'1258976630',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/iSQYXHv3GbU/responses?v=2',ord:'26',isprivate:'',t:'v'}, {id:'LUTslR84CIY',title:'Thousand Needles in Red - Clint Boge (Butterfly Effect) and Trizo Music Interview on LIVE2U TV',author:'Live2UTV',real_length:'518',length_seconds:'08:38',rating_avg:'5',rating_count:'4',view_count:'1098',description:'Thousand Needles in Red Interview. Sister Manic and Ultra Violet from Live2U TV catch up with Clint Boge (Butterfly Effect) and Tristen Bouillant (Kill the Capitol) for a game of pool and to talk about their latest collaboration, Australian Rock Band \'Thousand Needles in Red\'. They tell us what they have planned for the group and how it will affect the Butterfly Effect. Watch how they cope with the Live2U Crews usual wild antics and discover some quirky facts about these fellas such as why is Clint regretting their trip to Vegas and why does Trizo prefer his pussy shaved in a mowhawk?',tags:'Butterfly Effect, Clint Boge, Thousand Needles in Red, Tristen Bouillant, \'\'Pussy\'\', Live Music, Australian Music, Australian Comedy, Comedians, Musicians, New Music, Rock Music, Heavy Metal, Clint Butterfly Effect, Australian Rock',thumbnail_url:'http://img.youtube.com/vi/LUTslR84CIY/default.jpg',upload_time:'1258810934',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/LUTslR84CIY/responses?v=2',ord:'27',isprivate:'',t:'v'}, {id:'JuJy9C7nQE4',title:'Live2UTV Music Interviews at Wauchope Country Music Festival',author:'Live2UTV',real_length:'310',length_seconds:'05:10',rating_avg:'1',rating_count:'1',view_count:'146',description:'Sister Manic interviews a couple of unsuspecting Country Music performers on stopover to Tamworth Country Music Festival. Watch shy International performer Melissa Partridge cringe when she realises the questions are personal and off-the-wall and discover what song a Yodeller would choose as our Australian Anthem. Another typical fun interview from Live2U TV (check out more at www.live2u.com.au)',tags:'Australian Music Festival, Melissa Partridge, Interview with Musician, Live2u.com.au, live2utv, Country Music',thumbnail_url:'http://img.youtube.com/vi/JuJy9C7nQE4/default.jpg',upload_time:'1256291988',comment_count:'0',url:'http://gdata.youtube.com/feeds/api/videos/JuJy9C7nQE4/responses?v=2',ord:'28',isprivate:'',t:'v'}]},
initialize: function () {this.createP()}

};
var IDTVLBDataSourceb38af0062cIF = function () {IDTVLBDataSourceb38af0062c.initialize.apply(IDTVLBDataSourceb38af0062c, []);};
if (document.getElementById('IDTVP_b38af0062c'))
	IDTVLBDataSourceb38af0062cIF ();
else if (window.addEventListener)
	window.addEventListener("load", IDTVLBDataSourceb38af0062cIF, true);
else
	window.attachEvent("onload", IDTVLBDataSourceb38af0062cIF);