//chart2.js for channel 610 / widget 911 / WxH: 550x375 / skin: clean / vid: 0 / autoplay: N / shareicon: Y 
// pgstats - poor mans page statistics.. 
// NOT based on prototype or jquery - cause it must be lightweight

// // get our script src, to know our baseurl so we can call home
// var pgstatsScriptSource = (function(scripts) {
//     var scripts = document.getElementsByTagName('script'),
//         script = scripts[scripts.length - 1];	// at ths very moment, we are the last script guaranteed
// 
//     if (script.getAttribute.length !== undefined) {
//         return script.src
//     }
// 
//     return script.getAttribute('src', -1)
// }());

var pgstats= {
	browser: navigator.userAgent,
	uid: '',
	scr: screen.width.toString()+'x'+screen.height.toString(),
	url: document.URL,
	referrer: document.referrer,
	ecollect: {},
	baseurl: 'http://www.yubby.com/',	// pgstatsScriptSource.substr(0,pgstatsScriptSource.lastIndexOf('/pgstats/')),
	init: function() {
		if (!(this.uid=this.readCookie('pgstats'))) {
			this.uid= Math.round(Math.random() * 2147483647).toString();
			this.uid+= Math.round(Math.random() * 2147483647).toString();
			this.createCookie('pgstats',this.uid,365*2);
		}
	}, 
	xPageHit: function () {
		var xhReq=this.createXMLHttpRequest();
		if (!xhReq)
			return 'ERR:xhReq';	// forget it..
		if (!this.baseurl)
			return 'ERR:baseurl';	// forget it..
		xhReq.open('get',this.baseurl+'pgstats/tick?'+this.collectInfo(),true);
		// xhReq.onreadystatechange = function() {
		//     if (xhReq.readyState != 4)  { return; }
		//     var serverResponse = xhReq.responseText;
		//     alert(serverResponse);
		// };
		xhReq.send();
		return 'OK';
	},
	collectInfo: function() {
		var rv;
		rv='ts=' + new Date().getTime();
		//rv+='&br='+this.encURI(this.browser);
		rv+='&uid='+this.uid;
		rv+='&url='+this.encURI(this.url);
		rv+='&refer='+this.encURI(this.referrer);
		//rv+='&ssrc='+this.encURI(this.baseurl);
		rv+='&scr='+this.scr;
		for (i in this.ecollect) {
			rv+='&'+i+'='+this.encURI(this.ecollect[i]);
		}

		return rv;
	},
	addcollect: function(key,val) {
		this.ecollect[key]=val;
	},
	//------- helper functions ----------
	createCookie: function (name,value,days) {
		if (days) {
			var date = new Date();
			date.setTime(date.getTime()+(days*24*60*60*1000));
			var expires = "; expires="+date.toGMTString();
		}
		else var expires = "";
		document.cookie = name+"="+value+expires+"; path=/";
	},
	readCookie: function(name) {
		var nameEQ = name + "=";
		var ca = document.cookie.split(';');
		for(var i=0;i < ca.length;i++) {
			var c = ca[i];
			while (c.charAt(0)==' ') c = c.substring(1,c.length);
			if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
		}
		return null;
	},
	eraseCookie: function(name) {
		createCookie(name,"",-1);
	},
	encURI: function(url) {
		//return encodeURIComponent(url);	// forgets to encode a lot of chars. Useless
		var s = escape(url);	// this is the most complete one, however forgets to encode star, slash, @ and +
		s = s.replace(/\*/g,"%2A");
		s = s.replace(/\//g,"%2F");
		s = s.replace(/\@/g,"%40");
		s = s.replace(/\+/g,"%2B");
		return s;
	},
	createXMLHttpRequest: function() {
  		try { return new XMLHttpRequest(); } catch(e) {}
		try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
		try { return new ActiveXObject('Microsoft.XMLHTTP'); } catch (e) {}
		return null;
	}
}
pgstats.init();
//pgstats.addcollect('vid','234234');
//pgstats.xPageHit();
// Widget standard js for yubby
// NOT based on prototype or jquery - cause it must be lightweight and cant interfere with host

/**
 *	htmlspecialchars - like its php counterpart
 *	@author rvw
 *	@since 08-03-2010 12:19
 */
function htmlspecialchars(string) {
	string = string.toString();
	string = string.replace(/&/g, '&amp;');    
	string = string.replace(/</g, '&lt;').replace(/>/g, '&gt;');
	string = string.replace(/"/g, '&quot;');
	// single quote.. string = string.replace(/'/g, '&#039;');
	return string;
}

//------------ tween.js ----------------------
function Delegate() {}
Delegate.create = function (o, f) {
	var a = new Array() ;
	var l = arguments.length ;
	for(var i = 2 ; i < l ; i++) a[i - 2] = arguments[i] ;
	return function() {
		var aP = [].concat(arguments, a) ;
		f.apply(o, aP);
	}
}

Tween = function(obj, prop, func, begin, finish, duration, suffixe){
	this.init(obj, prop, func, begin, finish, duration, suffixe)
}
var t = Tween.prototype;

t.obj = new Object();
t.prop='';
t.func = function (t, b, c, d) { return c*t/d + b; };
t.begin = 0;
t.change = 0;
t.prevTime = 0;
t.prevPos = 0;
t.looping = false;
t._duration = 0;
t._time = 0;
t._pos = 0;
t._position = 0;
t._startTime = 0;
t._finish = 0;
t.name = '';
t.suffixe = '';
t._listeners = new Array();	
t.setTime = function(t){
	this.prevTime = this._time;
	if (t > this.getDuration()) {
		if (this.looping) {
			this.rewind (t - this._duration);
			this.update();
			this.broadcastMessage('onMotionLooped',{target:this,type:'onMotionLooped'});
		} else {
			this._time = this._duration;
			this.update();
			this.stop();
			this.broadcastMessage('onMotionFinished',{target:this,type:'onMotionFinished'});
		}
	} else if (t < 0) {
		this.rewind();
		this.update();
	} else {
		this._time = t;
		this.update();
	}
}
t.getTime = function(){
	return this._time;
}
t.setDuration = function(d){
	this._duration = (d == null || d <= 0) ? 100000 : d;
}
t.getDuration = function(){
	return this._duration;
}
t.setPosition = function(p){
	this.prevPos = this._pos;
	var a = this.suffixe != '' ? this.suffixe : '';
	this.obj[this.prop] = Math.round(p) + a;
	this._pos = p;
	this.broadcastMessage('onMotionChanged',{target:this,type:'onMotionChanged'});
}
t.getPosition = function(t){
	if (t == undefined) t = this._time;
	return this.func(t, this.begin, this.change, this._duration);
};
t.setFinish = function(f){
	this.change = f - this.begin;
};
t.geFinish = function(){
	return this.begin + this.change;
};
t.init = function(obj, prop, func, begin, finish, duration, suffixe){
	if (!arguments.length) return;
	this._listeners = new Array();
	this.addListener(this);
	if(suffixe) this.suffixe = suffixe;
	this.obj = obj;
	this.prop = prop;
	this.begin = begin;
	this._pos = begin;
	this.setDuration(duration);
	if (func!=null && func!='') {
		this.func = func;
	}
	this.setFinish(finish);
}
t.start = function(){
	this.rewind();
	this.startEnterFrame();
	this.broadcastMessage('onMotionStarted',{target:this,type:'onMotionStarted'});
	//alert('in');
}
t.rewind = function(t){
	this.stop();
	this._time = (t == undefined) ? 0 : t;
	this.fixTime();
	this.update();
}
t.fforward = function(){
	this._time = this._duration;
	this.fixTime();
	this.update();
}
t.update = function(){
	this.setPosition(this.getPosition(this._time));
	}
t.startEnterFrame = function(){
	this.stopEnterFrame();
	this.isPlaying = true;
	this.onEnterFrame();
}
t.onEnterFrame = function(){
	if(this.isPlaying) {
		this.nextFrame();
		setTimeout(Delegate.create(this, this.onEnterFrame), 0);
	}
}
t.nextFrame = function(){
	this.setTime((this.getTimer() - this._startTime) / 1000);
	}
t.stop = function(){
	this.stopEnterFrame();
	this.broadcastMessage('onMotionStopped',{target:this,type:'onMotionStopped'});
}
t.stopEnterFrame = function(){
	this.isPlaying = false;
}

t.continueTo = function(finish, duration){
	this.begin = this._pos;
	this.setFinish(finish);
	if (this._duration != undefined)
		this.setDuration(duration);
	this.start();
}
t.resume = function(){
	this.fixTime();
	this.startEnterFrame();
	this.broadcastMessage('onMotionResumed',{target:this,type:'onMotionResumed'});
}
t.yoyo = function (){
	this.continueTo(this.begin,this._time);
}

t.addListener = function(o){
	this.removeListener (o);
	return this._listeners.push(o);
}
t.removeListener = function(o){
	var a = this._listeners;	
	var i = a.length;
	while (i--) {
		if (a[i] == o) {
			a.splice (i, 1);
			return true;
		}
	}
	return false;
}
t.broadcastMessage = function(){
	var arr = new Array();
	for(var i = 0; i < arguments.length; i++){
		arr.push(arguments[i])
	}
	var e = arr.shift();
	var a = this._listeners;
	var l = a.length;
	for (var i=0; i<l; i++){
		if(a[i][e])
		a[i][e].apply(a[i], arr);
	}
}
t.fixTime = function(){
	this._startTime = this.getTimer() - this._time * 1000;
}
t.getTimer = function(){
	return new Date().getTime() - this._time;
}
Tween.backEaseIn = function(t,b,c,d,a,p){
	if (s == undefined) var s = 1.70158;
	return c*(t/=d)*t*((s+1)*t - s) + b;
}
Tween.backEaseOut = function(t,b,c,d,a,p){
	if (s == undefined) var s = 1.70158;
	return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
}
Tween.backEaseInOut = function(t,b,c,d,a,p){
	if (s == undefined) var s = 1.70158; 
	if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
	return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
}
Tween.elasticEaseIn = function(t,b,c,d,a,p){
		if (t==0) return b;  
		if ((t/=d)==1) return b+c;  
		if (!p) p=d*.3;
		if (!a || a < Math.abs(c)) {
			a=c; var s=p/4;
		}
		else 
			var s = p/(2*Math.PI) * Math.asin (c/a);
		
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	
}
Tween.elasticEaseOut = function (t,b,c,d,a,p){
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (!a || a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return (a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b);
	}
Tween.elasticEaseInOut = function (t,b,c,d,a,p){
	if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) var p=d*(.3*1.5);
	if (!a || a < Math.abs(c)) {var a=c; var s=p/4; }
	else var s = p/(2*Math.PI) * Math.asin (c/a);
	if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
}

Tween.bounceEaseOut = function(t,b,c,d){
	if ((t/=d) < (1/2.75)) {
		return c*(7.5625*t*t) + b;
	} else if (t < (2/2.75)) {
		return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
	} else if (t < (2.5/2.75)) {
		return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
	} else {
		return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
	}
}
Tween.bounceEaseIn = function(t,b,c,d){
	return c - Tween.bounceEaseOut (d-t, 0, c, d) + b;
	}
Tween.bounceEaseInOut = function(t,b,c,d){
	if (t < d/2) return Tween.bounceEaseIn (t*2, 0, c, d) * .5 + b;
	else return Tween.bounceEaseOut (t*2-d, 0, c, d) * .5 + c*.5 + b;
	}

Tween.strongEaseInOut = function(t,b,c,d){
	return c*(t/=d)*t*t*t*t + b;
	}

Tween.regularEaseIn = function(t,b,c,d){
	return c*(t/=d)*t + b;
	}
Tween.regularEaseOut = function(t,b,c,d){
	return -c *(t/=d)*(t-2) + b;
	}

Tween.regularEaseInOut = function(t,b,c,d){
	if ((t/=d/2) < 1) return c/2*t*t + b;
	return -c/2 * ((--t)*(t-2) - 1) + b;
	}
Tween.strongEaseIn = function(t,b,c,d){
	return c*(t/=d)*t*t*t*t + b;
	}
Tween.strongEaseOut = function(t,b,c,d){
	return c*((t=t/d-1)*t*t*t*t + 1) + b;
	}

Tween.strongEaseInOut = function(t,b,c,d){
	if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
	return c/2*((t-=2)*t*t*t*t + 2) + b;
	}

//======= end tween.js
var isIE = /MSIE ((5\.5)|[6])/.test(navigator.userAgent) && navigator.platform == "Win32";

var cvids_911= new Array();	// channelvideo's
var curvid_911=0;			// first video
var cpvideo_911=false;		// false=thumb, true=video

var matrix_curpg=1;
var matrix_npages=0;
var matrix_itemspp=3;	// 16
var tweenflip=0;
var tween1=null;
var tween2=null;

var butnext_mousein=false;
var butprev_mousein=false;
var img1_ov = new Image;
var img1_ou = new Image;
var img1_d  = new Image;
var img2_ov = new Image;
var img2_ou = new Image;
var img2_d  = new Image;
img1_ov.src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconprev24ov.png";
img1_ou.src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconprev24.png";
img1_d.src ="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconprev24d.png";
img2_ov.src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconnext24ov.png";
img2_ou.src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconnext24.png";
img2_d.src ="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconnext24d.png";

var wgElm_911 = document.getElementById('viidoo_chart2_911');
if (wgElm_911) {
	vp_createwg();
}

pgstats.addcollect('chid','610');
pgstats.addcollect('hit','embed');
pgstats.addcollect('widget','chart2');
pgstats.xPageHit();

function vp_createwg() {
	var html='<div id="widget_flash_911" class="widget_flash" style="width: 550px;height:375px;overflow:hidden; margin:0;padding:0;border:0px solid #DDDDDD;background:#fff;position:relative;font-family:Arial,helvetica,sans-serif">';
	html+='<div style="margin:0px;">';
	cvids_911.push({vid:485283, thumb: 'http://i.ytimg.com/vi/hD-EQD5jFSs/0.jpg', title: 'Thinking Allowed: Neo-Biological Civilization', desc: 'Kevin Kelly interviewed by Jeffrey Mishlove. Program: Thinking Allowed Host: Jeffrey Mishlove Date: 1999'});
	cvids_911.push({vid:485282, thumb: 'http://i.ytimg.com/vi/bz3KtFFvidY/0.jpg', title: 'Trey\'s Variety Hour #23 - Wearable Cameras of the Distant Future', desc: 'Daniel Suarez (author of Daemon) joins me, Leo Laporte, Kevin Kelly, and Gordon Laing to talk about Augmented Reality, Drone Swarms, Cameras and Art in the Future, and much much more Subscribe to the Podcast for free in iTunes: goo.gl No iTunes? Other subscription options: twit.tv'});
	cvids_911.push({vid:485281, thumb: 'http://i.ytimg.com/vi/x3L5ZXKtlYs/0.jpg', title: 'Hal Varian and Kevin Kelly on Page View', desc: 'Program: Page View Episode: 00103998 Host: Craig Miller Air date: November 11, 1998'});
	cvids_911.push({vid:483664, thumb: 'http://i.ytimg.com/vi/wkhKYl4k_0k/0.jpg', title: 'Jobsite Fresh Thinking Panel session - Mobile - Nov 2011', desc: 'Special mobile panel discussion with guest speakers Tomi Ahonen and Tony Fish being joined by our Group Strategy Director Felix Wetzel and Dee Dee Doke, editor of Recruiter Magazine. www.jobsite.co.uk/freshthinking'});
	cvids_911.push({vid:447497, thumb: 'http://i.ytimg.com/vi/Hdpf-MQM9vY/0.jpg', title: '***30-story building built in 15 days***  Construction time lapse *View Fullscreen*', desc: 'mp4 download link:http://www.broad.com/down/video_gxls_T30.rar\n\nWhat can you accomplish in 360 hours? \nThe Chinese sustainable building company, Broad Group, has yet attempted another impossible feat, building a 30-story tall hotel prototype in 360 hours, after building a 15-story building in a week earlier in 2011.\n\nYou may ask why in a hurry, and is it safe? The statistics in the video can put you in good faith. Prefabricated modular buildings has many advantages over conventional buildings. \n\nHigher precision in fabrication (+/- 0.2mm).\nMore coordinated on-site construction management.\nShorter construction time span.\nLower construction waste.\nAlso many other health and energy features are included in Broad Sustainable Buildings (BSB)\n\nThe building was built over last Christmas time and finished before New Years Eve of 2012.\n\n/////////\n \nAn Introduction to BROAD SUSTAINABLE BUILDING CO., LTD\n                                                                          Jan.11, 2012\nEstablished in March, 2009, BROAD SUSTAINABLE BUILDING CO., LTD is a wholly-owned subsidiary of BROAD Group, solely operates the magnitude-9 earthquake resistant, 5x more energy efficient, 20x purer air, 90% factory-built, and 1% construction waste Broad Sustainable Buildings (BSB).\nBSB headquarter and its R\&D Center are situated in the Xiangyin County of Hunan Province in Southern China, with 80,000sqm workshops, 900 employees in 2011. In 2012 with 220,000sqm workshops, 12,000 employees, and in 2013 with 360,000sqm workshops and 19,000 employees, reaching an annual production and installation capacity of 10 million sqms. BSB\'s central goal is:\n1. Improving R\&D of BSB technologies, setting up supply chains\n2. Sell BSBs in compliance with local regulations in the Hunan building market.\n3. Transfer BSB technology to 100 partnership enterprise, every Chinese province and distributed evenly in each nation worldwide. \nBy December, 2011, BSB technology reached finalization, altogether with 12 BSBs built in Changsha, Xiangyin, Shanghai, Zhejiang and Mexico and developed 2 franchise partners in Ningxia and Fujian with identical factory sizes to the Xiangyin BSB Factory. Another 10 Chinese \& international potential partners are in negotiation.\nBROAD envisions in the near future, there will be one BSB among three buildings worldwide, allowing all men and women to share BSB\'s solace. Proving that by responsible use of technology, earth\'s environment and human living can be elevated simultaneously.\nLin Gang Industrial Zone, Xiangyin County, Hunan Tel: 86-731-84086266 Email: bsbs@broad.net  www.broad.com/bsb'});
	cvids_911.push({vid:328674, thumb: 'http://i.ytimg.com/vi/cjJiqlYZjYc/0.jpg', title: 'Bouwhuisdebat \'Het groene Hart\' 30 oktober 2008', desc: 'Elco Brinkman, voorzitter van Bouwend Nederland heeft tijdens het Bouwhuisdebat over het Groene Hart opgeroepen om gebiedsdelen terug te geven aan de natuur, terwijl rond de kernen in het Groene Hart meer gebouwd moet kunnen worden. De kernen moeten kunnen samenwerken bijvoorbeeld aan uitbreiding langs de rail-, water- en weginfrastructuur van de Oude Rijnzone. Bouwend Nederland pleit voor een integrale aanpak van bouwopgaven, landbouw en natuur voor de hele regio en een lange termijn investeringsagenda om dat te realiseren. Brinkman: \'Het is ernstig dat het Groene Hart nu niet het kloppend hart is voor de Randstad. Even teleurstellend is, dat het ook niet zo groen is als het zou kunnen worden. De staat van de natuur in het Groene Hart is ondermaats. Het uitblijven van krachtig beleid heeft gezorgd, dat het Groene Hart zijn functie, het vergroten van de leefbaarheid van de steden in de regio, nauwelijks heeft weten uit te voeren.\' Rood voor Groen Het beleid van de laatste decennia heeft geleid tot een agricultureel landschap in het Groene Hart. Brinkman: \'Het is beter te kiezen voor een tweedeling tussen gebieden die echt groen zijn en \'rode\' zones met ruimte voor stedelijke uitbreiding. Ik sta voor nieuw beleid, waarin we de mooiste plaatsen van het Groene Hart beschermen om het gebied weer te laten kloppen.\' Het grootste deel van het Groene Hart is cultuurlandschap, in plaats van het natuurlandschap dat het (meer) zou moeten zijn. Brinkman: \'Er is maatschappelijke ...'});
	cvids_911.push({vid:328673, thumb: 'http://i.ytimg.com/vi/batmdnG_lFI/0.jpg', title: 'Bouwhuisdebat Het Groene hart: Cees Veerman.wmv', desc: 'Elco Brinkman, voorzitter van Bouwend Nederland heeft tijdens het Bouwhuisdebat over het Groene Hart opgeroepen om gebiedsdelen terug te geven aan de natuur, terwijl rond de kernen in het Groene Hart meer gebouwd moet kunnen worden. De kernen moeten kunnen samenwerken bijvoorbeeld aan uitbreiding langs de rail-, water- en weginfrastructuur van de Oude Rijnzone. Bouwend Nederland pleit voor een integrale aanpak van bouwopgaven, landbouw en natuur voor de hele regio en een lange termijn investeringsagenda om dat te realiseren. Brinkman: \'Het is ernstig dat het Groene Hart nu niet het kloppend hart is voor de Randstad. Even teleurstellend is, dat het ook niet zo groen is als het zou kunnen worden. De staat van de natuur in het Groene Hart is ondermaats. Het uitblijven van krachtig beleid heeft gezorgd, dat het Groene Hart zijn functie, het vergroten van de leefbaarheid van de steden in de regio, nauwelijks heeft weten uit te voeren.\' Rood voor Groen Het beleid van de laatste decennia heeft geleid tot een agricultureel landschap in het Groene Hart. Brinkman: \'Het is beter te kiezen voor een tweedeling tussen gebieden die echt groen zijn en \'rode\' zones met ruimte voor stedelijke uitbreiding. Ik sta voor nieuw beleid, waarin we de mooiste plaatsen van het Groene Hart beschermen om het gebied weer te laten kloppen.\' Het grootste deel van het Groene Hart is cultuurlandschap, in plaats van het natuurlandschap dat het (meer) zou moeten zijn. Brinkman: \'Er is maatschappelijke ...'});
	cvids_911.push({vid:328672, thumb: 'http://i.ytimg.com/vi/zX3n83jM434/0.jpg', title: 'Wat Nou Zuid-Holland Afl. 4 de RijnGouweLijn', desc: 'Deze week in WNZH?! Al meer dan 10 jaar wordt erover gepraat en nog steeds is er geen Rijngouwelijn. Deze lightrailverbinding moet ervoor zorgen dat je snel van Gouda naar de kust kunt met het openbaar vervoer. Maar om van Oost naar West te komen moet de Rijngouwelijn door Leiden. Als het aan de provincie Zuid-Holland ligt dwars door de stad. Bas en Marjolein gaan op onderzoek uit! WNZH iedere dinsdag bij TV West en donderdag bij TV Rijnmond.'});
	cvids_911.push({vid:328671, thumb: 'http://i.ytimg.com/vi/XJwwd3rlxak/0.jpg', title: 'Rail-Tech Europe 2009', desc: 'In de nacht van zaterdag 28 op zondag 29 maart jl is in de Jaarbeurs in Utrecht de opbouw begonnen van de 7e editie van Rail-Tech Europe. Deze vakbeurs op het gebied van railinfrastructuur en rollend materieel wordt gehouden op 31 maart t/m 2 april as Rond middernacht begon hoofdsponsor voestalpine Railpro BV uit Hilversum met de aanleg van het spoor in beurshal 8. Om precies te zijn 160 meter spoor verdeeld in 14 secties zijn door hen op een vrachtwagen de hal van de Jaarbeurs binnengereden. Dit spoor was al voorgeprepareerd zodat dit direct geplaatst kon worden. Na een aantal uur lagen alle spoorsecties op hun plaats en konden de overige standbouwers aan het werk gaan. Klik hier voor de videobeelden van de aanleg van het spoor. De vakbeurs Rail-Tech Europe streeft er naar om zoveel mogelijk van de railinfrastructuur en alles wat daarbij komt kijken daadwerkelijk op de beursvloer te laten zien. Zo maken veel exposanten dan ook gebruik van dit spoor in de beurshal om hun machines en apparatuur tentoon te stellen of te demonstreren. Meer informatie over dit evenement: www.railtech-europe.com.'});
	cvids_911.push({vid:328670, thumb: 'http://i.ytimg.com/vi/cjJiqlYZjYc/0.jpg', title: 'Bouwhuisdebat \'Het groene Hart\' 30 oktober 2008', desc: 'Elco Brinkman, voorzitter van Bouwend Nederland heeft tijdens het Bouwhuisdebat over het Groene Hart opgeroepen om gebiedsdelen terug te geven aan de natuur, terwijl rond de kernen in het Groene Hart meer gebouwd moet kunnen worden. De kernen moeten kunnen samenwerken bijvoorbeeld aan uitbreiding langs de rail-, water- en weginfrastructuur van de Oude Rijnzone. Bouwend Nederland pleit voor een integrale aanpak van bouwopgaven, landbouw en natuur voor de hele regio en een lange termijn investeringsagenda om dat te realiseren. Brinkman: \'Het is ernstig dat het Groene Hart nu niet het kloppend hart is voor de Randstad. Even teleurstellend is, dat het ook niet zo groen is als het zou kunnen worden. De staat van de natuur in het Groene Hart is ondermaats. Het uitblijven van krachtig beleid heeft gezorgd, dat het Groene Hart zijn functie, het vergroten van de leefbaarheid van de steden in de regio, nauwelijks heeft weten uit te voeren.\' Rood voor Groen Het beleid van de laatste decennia heeft geleid tot een agricultureel landschap in het Groene Hart. Brinkman: \'Het is beter te kiezen voor een tweedeling tussen gebieden die echt groen zijn en \'rode\' zones met ruimte voor stedelijke uitbreiding. Ik sta voor nieuw beleid, waarin we de mooiste plaatsen van het Groene Hart beschermen om het gebied weer te laten kloppen.\' Het grootste deel van het Groene Hart is cultuurlandschap, in plaats van het natuurlandschap dat het (meer) zou moeten zijn. Brinkman: \'Er is maatschappelijke ...'});
	cvids_911.push({vid:328669, thumb: 'http://i.ytimg.com/vi/E7nsyI10X_w/0.jpg', title: 'Bouwhuisdebat Het Groene hart: Elco Brinkman.wmv', desc: 'Elco Brinkman, voorzitter van Bouwend Nederland heeft tijdens het Bouwhuisdebat over het Groene Hart opgeroepen om gebiedsdelen terug te geven aan de natuur, terwijl rond de kernen in het Groene Hart meer gebouwd moet kunnen worden. De kernen moeten kunnen samenwerken bijvoorbeeld aan uitbreiding langs de rail-, water- en weginfrastructuur van de Oude Rijnzone. Bouwend Nederland pleit voor een integrale aanpak van bouwopgaven, landbouw en natuur voor de hele regio en een lange termijn investeringsagenda om dat te realiseren. Brinkman: \'Het is ernstig dat het Groene Hart nu niet het kloppend hart is voor de Randstad. Even teleurstellend is, dat het ook niet zo groen is als het zou kunnen worden. De staat van de natuur in het Groene Hart is ondermaats. Het uitblijven van krachtig beleid heeft gezorgd, dat het Groene Hart zijn functie, het vergroten van de leefbaarheid van de steden in de regio, nauwelijks heeft weten uit te voeren.\' Rood voor Groen Het beleid van de laatste decennia heeft geleid tot een agricultureel landschap in het Groene Hart. Brinkman: \'Het is beter te kiezen voor een tweedeling tussen gebieden die echt groen zijn en \'rode\' zones met ruimte voor stedelijke uitbreiding. Ik sta voor nieuw beleid, waarin we de mooiste plaatsen van het Groene Hart beschermen om het gebied weer te laten kloppen.\' Het grootste deel van het Groene Hart is cultuurlandschap, in plaats van het natuurlandschap dat het (meer) zou moeten zijn. Brinkman: \'Er is maatschappelijke ...'});
	cvids_911.push({vid:328668, thumb: 'http://i.ytimg.com/vi/oqwdMO6OKmo/0.jpg', title: 'RijnDijk Groep - Introductiefilm', desc: 'Elk jaar verwerkt de RijnDijk Groep maar liefst 30.000 ton staal tot wezenlijke constructies in onze samenleving. Binnen de groep richten veertien gespecialiseerde werkmaatschappijen zich op de petrochemie, de olie- en gaswinning, de elektriciteitsmarkt, de civiele en de industri\u00eble markt en de railinfrastructuur. De RijnDijk Groep kent een gezamenlijke omzet van zon \u20ac\&nbsp;150 miljoen en heeft ongeveer 575 medewerkers in Nederland,\&nbsp;Slowakije en Nigeria. Het is een kerngezond concern dat aan de top van de markt opereert. Juist omdat de groep de kracht en het oplossend vermogen biedt die de hedendaagse opdrachtgever verlangt. Dat is Meer dan Staal.'});
	cvids_911.push({vid:328667, thumb: 'http://b.vimeocdn.com/ts/919/591/91959185_640.jpg', title: 'Lucht Licht Lichaam', desc: 'Maarten Struijs is ruim 25 jaar bij Gemeentewerken Rotterdam in dienst geweest als architect. In deze periode heeft hij een indrukwekkend aantal infrastructurele werken gerealiseerd. Het inzicht dat niet alleen het water stroomt, maar ook andere elementen zoals lucht, licht en lichamen, heeft zijn visie op architectuur en vormgeving van de infrastructuur sterk be\u00efnvloed.\nIn de korte documentaire \'Lucht Licht Lichaam\' vertelt Maarten Struijs, architect van de onderorde, vanuit zijn herinnering en aan de hand van zijn laatste werken voor RandstadRail.\n'});
	cvids_911.push({vid:328666, thumb: 'http://i.ytimg.com/vi/nav-o8GXyOU/0.jpg', title: 'Strukton Rail', desc: 'Strukton Rail is een fullserviceaanbieder voor spoorsystemen. We willen het spoorvervoer nog aantrekkelijker maken. Dat doen wij met grensverleggende oplossingen op het gebied van railinfrastructuur en rollend materieel. www.struktonrail.nl'});
	cvids_911.push({vid:262064, thumb: 'http://i.ytimg.com/vi/1IdItK80eMo/0.jpg', title: 'Tele-Atlas Van', desc: 'Tele-Atlas drives the roads of the US mapping to 1/4\" accuracy and photographs the buildings along the roads and highways.'});
	cvids_911.push({vid:262063, thumb: 'http://i.ytimg.com/vi/Tp20bbhvxMw/0.jpg', title: 'BMW E46 MK4 Navigation 2010 TELE ATLAS DVD Map Full Review Part 1', desc: 'Everything you wanted to know about the BMW E46 Navigation MK4 Demystified. Rated by me: 4.5 stars out of 5 stars I reviewed and rated it based on key areas that many in car navigation electronics are critiqued on. These are Speed, Integration with other ICE components, Precision, Route Guidance, Map clarity POSITIVES: -Has a lot of USEFUL and solid features -Very Quick! Start up \& Loading Maps, Also finds GPS Signal Quick -Seemless integration with other ICE Radio functions and Bluetooth -Map Clarity and Graphics are clear and GPS location mapping is very precise -Visual and Vocal Directions are also on point -Navigation Voice Prompt works seemlessly with your music so nothing is paused or disrupted (see video). The voice can also be lowered or raised depending on your tastes. NEGATIVES: -Uses DVDs over Hard Drive or SD Cards (not really a full negative since DVDs are really quick to load and easy for updating the maps) -DVDs are EXPENSIVE!  per DVD (1 for East and 1 for West coast) -Takes a long time to get use to controls and using it. Took me a full week to learn some of the main functions on GPS where as a Tom Tom Go is easy to use and fully understand minutes out of the box. -A lot of the cool features are buried deep in the menu and takes a while to find and learn to use. -Entering addresses on the Input Screen on the fly is not advised. The slection text is tiny and it hard to input a destination whiles driving or at a red light. Bigger text on the input ...'});
	cvids_911.push({vid:262062, thumb: 'http://i.ytimg.com/vi/kxQEDVSc9p4/0.jpg', title: 'How Tele Atlas make digital maps', desc: 'Recently we were invited to the Tele Atlas roadshow, where Tele Atlas explained how they created the digital maps used in a lot of the SatNav systems such as TomTom, NavMan, ViaMichelin, Mio etc. This video show us out on the road with a Tele Atlas mapping van'});
	cvids_911.push({vid:237685, thumb: 'http://i.ytimg.com/vi/9E8_NEtkCMw/0.jpg', title: 'Energie besparen kun je leren!', desc: 'Maak kennis met Gijs, energieambtenaar. Met zijn verrassende tips voor energiebesparing maakt hij korte metten met stroomvreters en hoge energierekeningen... Meet Gijs, civil servant of Energy Saving. With his surprising tips for energy saving he aims to bring an end to heavy electricity users en towering energy bills...'});
	cvids_911.push({vid:237684, thumb: 'http://i.ytimg.com/vi/aphJApbwO_c/0.jpg', title: 'Energy: let\'s save it /Energie: chasse au gaspi', desc: 'From the moment they wake up each day, a family wastes huge amounts of energy without realising. But all this is about to change... D\u00e8s l\'aube, une famille gaspille all\u00e8grement et inconsciemment l\'\u00e9nergie. Jusqu\'au moment o\u00f9...'});
	cvids_911.push({vid:229013, thumb: 'http://i.ytimg.com/vi/b5CYn9oMT-4/0.jpg', title: 'Willem-Albert Bol Geeke van der Sluis van communicatie Vodafone over EV rijden en vergroening', desc: 'Willem-Albert Bol Manager Media and Marcom planning at Vodafone praat over zijn visie op Elektrisch rijden \& de vergroening van Vodafone. Geeke van der Sluis van corporate communicatie gaat intens uit haar dak met de 1e rij ervaring in een EV . Een paar vragen blijven over.'});
	cvids_911.push({vid:228944, thumb: 'http://i.ytimg.com/vi/Fh35Ea3NSK4/0.jpg', title: 'Froukje Jansen doet flik flak in de zomer draait door', desc: 'Froukje Jansen doet de flik-flak in \"de zomer draait door\".'});
	cvids_911.push({vid:228933, thumb: 'http://i.ytimg.com/vi/JFAsjUs-tmw/0.jpg', title: 'Elektrisch \'tanken\' in een half uur', desc: 'Snel elektrisch \'tanken\'. Het is in Leeuwarden mogelijk. Prins Maurits opende het eerste snellaadstation van Europa.'});
	cvids_911.push({vid:228932, thumb: 'http://i.ytimg.com/vi/8oZKFTJGSzs/0.jpg', title: 'The Leader Inside: Hans Streng', desc: 'www.leaderinside.com - Executive Search for a better world. Hans is CEO of Epyon BV (Fast charging of electric vehicle batteries). He gives us his personal vision on New Leadership with pragmatic examples.'});
	cvids_911.push({vid:218295, thumb: 'http://i.ytimg.com/vi/0MIdZL55sNE/0.jpg', title: 'Samsung Galaxy tab 10.1v unboxing', desc: 'received my Samsung Galaxy tab 10.1v today from Vodafone Australia'});
	cvids_911.push({vid:218294, thumb: 'http://static2.dmcdn.net/static/video/089/685/28586980:jpeg_preview_large.jpg?20110213210813', title: 'Samsung galaxy Tab 10.1 - live MWC preview', desc: 'MobileBurn.com - The Samsung Galaxy Tab 10.1 is an Android 3.0 Honeycomb powered tablet computer with a 10.1 touchscreen display and a dual-core Samsung processor.  We spent some time with it before the official launch event here at Mobile World Congress in Barcelona. More info: http://www.mobileburn.com/gallery.jsp?Id=12941'});
	cvids_911.push({vid:198436, thumb: 'http://i.ytimg.com/vi/Ne8YmpVVH4Q/0.jpg', title: 'NZT- The Clear Pill', desc: ''});
	cvids_911.push({vid:191890, thumb: 'http://i.ytimg.com/vi/IwHPopKEESQ/0.jpg', title: 'Basta   Neveneffecten bij Mobistar   Volledig', desc: ''});
	cvids_911.push({vid:190391, thumb: 'http://i.ytimg.com/vi/YhFFebnHgPw/0.jpg', title: 'CEBIT 87', desc: 'Oh-Ha! CD-Rom? Wasn das?'});
	cvids_911.push({vid:188959, thumb: 'http://i.ytimg.com/vi/OMYz7bggxas/0.jpg', title: 'Honda Brings the FCX Clarity to 2011 Geneva Motor Show', desc: 'The Geneva Motor Show also marks the debut of Honda EV Concept electric vehicle and plug-in hybrid vehicle platform, showing the ultimate goal of the Fuel Cell Electric Vehicles, like the FCX Clarity. TheAutoChannel.com has the complete story.'});
	cvids_911.push({vid:188957, thumb: 'http://i.ytimg.com/vi/L8IGWAIlXVI/0.jpg', title: 'New Technologies Fuel Geneva International Car Show Entries', desc: 'For more news visit \u261b english.ntdtv.com or Follow us on Twitter \u261b http The eighty-first International Car Show officially kicks off in Geneva on Thursday. Automakers unveiled their new models for a media preview on Tuesday in hopes of meeting consumer appetite for new fuel technologies. Traditional automakers will be competing with electric and hybrid technologies at the 81st Geneva International car show this Thursday. In a media preview on Tuesday, electric concept cars and the first ever diesel-hybrid models were on display. It seems the automakers were trying to fulfill consumers\' expectations they had failed to meet last year as they unveiled their world premieres. Volvo unveiled its hybrid diesel V60 sedan, a plug-in concept car aimed to be on the roads by 2012. The car can offer an incredible 150 mpg in the hybrid mode using both its 2.4-liter diesel engine and 70 horsepower electric motor coupled to the rear drive. Peugeot\'s hybrid diesel the 3008 Hybrid4 Limited is set to become the world\'s first production diesel hybrid vehicle with production starting some time this year. The four-wheel drive 3008 family car offers a potential 74.4 mpg with its 200 horsepower engine. Christoph Sturmer, a research director at IHS Automotive, said consumers were becoming more realistic about the availability and prices of electric vehicles. Audi also invested in the hybrid vehicles market this year revealing a new Q5 Hybrid Quattro, a crossover four-wheel SUV with a V6, 2 liter ...'});
	cvids_911.push({vid:187684, thumb: 'http://i.ytimg.com/vi/3WdS4TscWH8/0.jpg', title: 'Apple Futureshock', desc: 'Concept video showing off the applications behind Apple\'s \"Futureshock\" Knowledge Navigator concept device from 1987.'});
	cvids_911.push({vid:181511, thumb: 'http://i.ytimg.com/vi/yDfo2Vt8qaQ/0.jpg', title: 'Hoe waardeer je de OV-chipkaart op?', desc: 'http://vraagalex.com/hoe-kraak-je-de-ov-chipkaart/ De OV-chipkaart opwaarderen is zeer eenvoudig! Hier is mijn geheim, zo kraak je de OV-chipkaart... het is mij IN DE TREIN gelukt!'});
	cvids_911.push({vid:180502, thumb: 'http://i.ytimg.com/vi/5bgRszdUdhQ/0.jpg', title: 'The Shaving Helmet', desc: 'This is my buddy Boris proudly showing off his \"shaving helmet\". My roommate Kenny volunteered for the demonstration.'});
	cvids_911.push({vid:176817, thumb: 'http://0.gvt0.com/ThumbnailServer2?app=vss\&contentid=600680e14c074858\&offsetms=1\&itag=w160\&hl=en\&sigh=__FKEAwv_ODBBJ-H7PiQ65V5bpsV0=', title: 'New Yankee Workshop - Library System[.zuojiaju.]', desc: 'New Yankee Workshop - Library System[www.zuojiaju.com]tudou.com'});
	cvids_911.push({vid:176248, thumb: 'http://i.ytimg.com/vi/Rb3WCuNetro/0.jpg', title: 'Awareness, Inc. CEO Mark Cattini Talks About The Social Marketing Hub', desc: 'Mark Cattini sits down for his first video blog to discuss some of the social media challenges many of the brands he spoke with during his road trip around the country are faced with while also providing an overview of the new Awareness Social Marketing Hub.'});
	cvids_911.push({vid:176247, thumb: 'http://i.ytimg.com/vi/AE7pnLQTuas/0.jpg', title: 'Autotask Names New CEO: Godgart Shifts to SaaS Innovation', desc: 'TalkinCloud FastChat Video interviews Bob Godgart, founder of Autotask, a SaaS software provider that serves VARs and managed services providers. Godgart describes his shift from Autotask CEO to Autotask Chief Visionary Officer. (Mark Cattini succeeds Godgart as CEO.) Also, Godgart describes how he hopes to innovate in the SaaS and cloud industries for channel partners.'});
	cvids_911.push({vid:176246, thumb: 'http://i.ytimg.com/vi/jnliG_TwlYg/0.jpg', title: 'SaaS Specialist Autotask Names Mark Cattini CEO', desc: 'TalkinCloud FastChat Video interviews new Autotask CEO Mark Cattini. Former CEO and Founder Bob Godgart shifts to Chief Visionary Officer. Autotask develops SaaS and Cloud software that VARs and managed services providers use to run their businesses. Cattini, the former CEO of MapInfo, describes why he joined Autotask, and where the SaaS and cloud company is heading next.'});
	cvids_911.push({vid:175063, thumb: 'http://a.images.blip.tv/Vincente-G1CompetitieBartWeijermarsTmobileMarketing484-546.jpg', title: 'G1 competitie Bart Weijermars Tmobile marketing', desc: ''});
	cvids_911.push({vid:174168, thumb: 'http://i.ytimg.com/vi/gXEK6m4ZxNQ/0.jpg', title: 'YouTube          new jetlev flyer video', desc: ''});
	cvids_911.push({vid:168420, thumb: 'http://i.ytimg.com/vi/mDGTSucObLg/0.jpg', title: 'Winter Fail Compilation 2011', desc: 'Winter Fail Compilation 2011'});
	cvids_911.push({vid:168406, thumb: 'http://www.livestream.com/filestore/user-files/chdldconference/2011/01/25/9ef2e08c-85aa-42fb-a939-99d1a82ad481_1.jpg', title: 'Closing Panel on DLD CONFERENCE -VIDEO STREAM #1 - live streaming video powered by Livestream', desc: 'Closing Panel on DLD CONFERENCE -VIDEO STREAM #1 on Livestream - Watch live streaming Internet TV.  Broadcast your own live streaming videos, like DLD CONFERENCE -VIDEO STREAM #1 in Widescreen HD. Livestream, Be There.'});
	cvids_911.push({vid:165066, thumb: 'http://i.ytimg.com/vi/viVIRMXxXbY/0.jpg', title: 'Bigstream wireless streaming device at CES', desc: ''});
	cvids_911.push({vid:162597, thumb: 'http://i.ytimg.com/vi/nULKw8s061E/0.jpg', title: 'Lily Allen - Fuck you [with lyrics]', desc: 'Lily Allen\'s new song My very first Songvideo =)'});
	cvids_911.push({vid:160669, thumb: 'http://i.ytimg.com/vi/DS_3ARebKx0/0.jpg', title: 'Het unieke klimmende fietsslot van Conrad', desc: 'Conrad presenteert een geweldig techniek-idee, dat niet alleen fietsendieven zal verbazen. Met dit fietsslot takel je je fiets in een lantaarnpaal. Mancave laat zien hoe je hem maakt (onderdelenlijst, bouwplan): http://mancave.conrad.nl/coolste-fietsslot-het-bouwplan-primeur/'});
	cvids_911.push({vid:157809, thumb: 'http://i.ytimg.com/vi/u-S__QplmSs/0.jpg', title: 'CES 2011 CONTOUR VIDEO CAMERA WITH GPS FOR EXTREME SPORTS, vriewfinder on iphone/android', desc: 'Check out the latest in GPS Video Camera Technology. Be the first in the world to capture crisp HD and track your location, speed, and elevation all at the same time and it\'s hands free. CONTOUR GPS and CONTOUR HD video cameras from CES 2011 show in Las Vegas. www.CAMPFIREINACAN.com or call 702-583-7919'});
	cvids_911.push({vid:157400, thumb: 'http://i.ytimg.com/vi/13d8PNZ9uM8/0.jpg', title: 'It\'s a Giant Suzuki', desc: '25th Anniversary Edition of \"It\'s a Giant Suzuki\" - Director\'s cut'});
	cvids_911.push({vid:157395, thumb: 'http://i.ytimg.com/vi/fa-vthDxGa4/0.jpg', title: 'Media Markt - Arie Koomen \"dat is mijn winkel\"', desc: 'Arie Koomen laat zien dat je bij Media Markt elk product kunt proberen'});
	cvids_911.push({vid:157385, thumb: 'http://i.ytimg.com/vi/OrbSRLiIdOk/0.jpg', title: 'GoPro HD HERO Camera: Crankworx Whistler - Mike Montgomery\'s Slopestyle Run', desc: 'Learn about the new GoPro HD HERO\u00ae camera at www.gopro.com. Mike Montgomery\'s seamless 2nd place run at the 2010 Crankworx Whistler. Unbelievable.'});
	cvids_911.push({vid:157371, thumb: 'http://i.ytimg.com/vi/G63TOHluqno/0.jpg', title: 'GoPro HD HERO Camera: Kayak Competition - Teva Mountain Games', desc: 'Learn about the new GoPro HD HERO\u00ae camera at www.gopro.com. Hop on board with Sam Sutton, Andrew Holcombe, Nick Troutman, Tao Berman, and Nikki Kelly as they take you down the intense Steep Creek Kayak Competition run!'});
	cvids_911.push({vid:157370, thumb: 'http://i.ytimg.com/vi/VTz5FVLPihw/0.jpg', title: 'GoPro HD HERO Camera: Red Bull Rampage 2010', desc: 'Shot 100% on the HD HERO\u00ae camera from GoPro\u00ae. Learn more at GoPro.com. Check out the GoPro footage from the 2010 Red Bull Rampage in Virgin Utah. Music RJD2'});
	cvids_911.push({vid:157369, thumb: 'http://i.ytimg.com/vi/_s21z-tVKls/0.jpg', title: 'GoPro HD HERO camera: Faceshots', desc: 'Learn about the new GoPro HD HERO\u00ae camera at gopro.com. An intimate portrait of GoPro athlete Neil Amonson taking advantage of one of this year\'s epic powder days. Plenty for everyone.'});
	cvids_911.push({vid:157368, thumb: 'http://i.ytimg.com/vi/yo3M6EB8kmk/0.jpg', title: 'GoPro 2010 Highlights: You in HD', desc: 'Shot 100% on the HD HERO\u00ae camera from GoPro\u00ae. Learn more at www.gopro.com. Skiing \& Snowboarding 0 Surfing \& Swimming 1:17 Skateboarding 2:30 BMX \& Freeride MTB 2:52 Motocross \& Off-Road 3:23 Car Racing 4:02 Human Flight 4:51 Music: Data Italia by Skatebaard'});
	cvids_911.push({vid:154658, thumb: 'http://i.ytimg.com/vi/x8bc_ZyORbM/0.jpg', title: 'Fox News: Amsterdam is a SEX DRUGS ANARCHY + statistics USA/NL', desc: 'Fox News reports on the city of Amsterdam. It illustrates the Dutch capital as a city of crime, drugs and anarchy, but is this the truth?\n \nThis is a compilation of 2 videos about Fox\' coverage on Amsterdam and the reply of a fellow Dutch Youtuber, used for my presentation for journalism class. \n\nOriginal videos:\nhttp://www.youtube.com/watch?v=sTPsFIsxM3w\nhttp://www.youtube.com/watch?v=BpU0NxPhA78'});
	cvids_911.push({vid:152702, thumb: 'http://i.ytimg.com/vi/qlmglIbcc6A/0.jpg', title: '1000 feet high Insane Stratosphere X-Scream Ride In Las Vegas', desc: 'This is one of the rides on top of the Stratosphere in Las Vegas. 909 ft above the ground hanging over the edge of the tower. CRAZY!!!'});
	cvids_911.push({vid:151357, thumb: 'http://i.ytimg.com/vi/29YYuzQDOKA/0.jpg', title: 'Ben Saunders - Use Somebody live @ The Voice Of Holland', desc: 'Ben Saunders - Use Somebody live @ The Voice Of Holland\n\nall rights go to: rtl, the voice of holland, Ben Saunders'});
	cvids_911.push({vid:150275, thumb: 'http://i.ytimg.com/vi/QKsPLPZPkEI/0.jpg', title: 'Steve Jobs Versus Dragons\' Den - 2010 Unwrapped with Miranda Hart - Preview - BBC Two', desc: 'More about this programme: www.bbc.co.uk What happened when Steve Jobs pitched the iPad in the Dragons\' Den?'});
	cvids_911.push({vid:150274, thumb: 'http://i.ytimg.com/vi/X6Zo53M0lcY/0.jpg', title: 'Chris Anderson: How YouTube is driving innovation', desc: 'http://www.ted.com TED\'s Chris Anderson says the rise of web video is driving a worldwide phenomenon he calls Crowd Accelerated Innovation -- a self-fueling cycle of learning that could be as significant as the invention of print. But to tap into its power, organizations will need to embrace radical openness. And for TED, it means the dawn of a whole new chapter ...\n\nHow come TED\'s head guy Chris Anderson is giving his own TEDTalk? Well, it all started with an idea that wouldn\'t go away -- an insight into the true significance of web video, and what it might mean for the world\'s future. Bruno Giussani, who runs our TEDGlobal conference, got excited enough about the idea that he insisted Chris speak at Oxford this summer. The talk ushers in a whole new chapter in TED\'s history ... one which you\'re invited to help write. Please watch, and then help shape the future of TED with your comments.\n\nTEDTalks is a daily video podcast of the best talks and performances from the TED Conference, where the world\'s leading thinkers and doers give the talk of their lives in 18 minutes. Featured speakers have included Al Gore on climate change, Philippe Starck on design, Jill Bolte Taylor on observing her own stroke, Nicholas Negroponte on One Laptop per Child, Jane Goodall on chimpanzees, Bill Gates on malaria and mosquitoes, Pattie Maes on the \"Sixth Sense\" wearable tech, and \"Lost\" producer JJ Abrams on the allure of mystery. TED stands for Technology, Entertainment, Design, and TEDTalks cover these topics as well as science, business, development and the arts. Closed captions and translated subtitles in a variety of languages are now available on TED.com, at http://www.ted.com/translate. Watch a highlight reel of the Top 10 TEDTalks at http://www.ted.com/index.php/talks/top10'});
	cvids_911.push({vid:149885, thumb: 'http://i.ytimg.com/vi/3htU3NTqMQs/0.jpg', title: 'FAIL Compilation 2010 || Best Fails of the Year || FUNNY || HD', desc: 'Twitter: http://twitter.com/#!/N0bodyyy\nFacebook: http://tinyurl.com/N0bodyyyFacebook\nI did: http://www.imagebanana.com/view/99krf69u/myselffail.JPG'});
	cvids_911.push({vid:149884, thumb: 'http://i.ytimg.com/vi/9attUeKfxSI/0.jpg', title: 'WIN Compilation 2010 || Winners of the Year || FUNNY || HD', desc: 'Twitter: http://twitter.com/#!/N0bodyyy\nFacebook: http://tinyurl.com/N0bodyyyFacebook\nI did: http://www.imagebanana.com/view/fuxdpado/myselfwin.JPG'});
	cvids_911.push({vid:149883, thumb: 'http://i.ytimg.com/vi/qybUFnY7Y8w/0.jpg', title: 'OK Go - This Too Shall Pass - Rube Goldberg Machine version - Official', desc: 'From the new album \"Of the Blue Colour of the Sky\" available at http://www.okgo.net/store \nOK Go on Tour http://www.okgo.net/shows/\nDirected by James Frost, OK Go and Syyn Labs. Produced by Shirley Moyers. The official video for the recorded version of \"This Too Shall Pass\" off of the album \"Of the Blue Colour of the Sky\". The video was filmed in a two story warehouse, in the Echo Park neighborhood of Los Angeles, CA. The \"machine\" was designed and built by the band, along with members of Syyn Labs ( http://syynlabs.com/ ) over the course of several months. \nThere is an in-depth behind-the-scenes look at the warehouse here: http://www.okgo.net/this-too-shall-pass-rube-goldberg-machine/\nOK Go thanks State Farm for making this video possible.'});
	cvids_911.push({vid:149814, thumb: 'http://i.ytimg.com/vi/or6UX1vtJNI/0.jpg', title: 'Brand in moerdijk', desc: 'brand in moerdijk'});
	cvids_911.push({vid:148699, thumb: 'http://i.ytimg.com/vi/GX0Hpb5-1As/0.jpg', title: 'Catfish Interview w/ Nev \& Rel Shulman and Henry Joost (Sundance 2010)', desc: 'The creators of the film \"Catfish\" - Areil \" Rel \" Shulman, Henry Joost and Yaneev \" Nev \" Shulman talk about Sundance, Facebook, Google, technology and student filmmaking at Sundance Twenty-Ten. Campus MovieFest is the world\'s largest student film festival.'});
	cvids_911.push({vid:144881, thumb: 'http://i.ytimg.com/vi/65f3IYcf8Uw/0.jpg', title: 'Politie zet YouTube en Twitter vaker in bij misdaadbestrijding', desc: 'GRONINGEN - De politie Groningen zal in de toekomst steeds meer gebruik gaan maken van sociale media als Twitter en YouTube. Sinds een paar maanden schakelt de politie regelmatig op deze manier de hulp in van inwoners bij het oplossen van misdaden. Inmiddels heeft de politie van tien zaken beelden op internet gezet. Onlangs bijvoorbeeld nog werd een filmpje op YouTube geplaatst over een fietsendiefstal in de Oude Kijk in \'t Jatstraat.Voor ieder filmpje dat de politie op internet zet moet overigens eerst toestemming worden gevraagd aan het Openbaar Ministerie. Ongeveer een kwart van de buurtagenten twittert. Twitter is een verzamelnaam voor een manier van communiceren waarbij je in 140 tekens duidelijk maakt wat je doet, waar je bent, of wat je bezighoudt. De politie kan via een tweet een oproep doen om uit te kijken naar bijvoorbeeld een vermist persoon of een gestolen auto. Lezers van deze tweets kunnen hierop reageren. Twitter is in dit geval dus een directe en snelle manier van communicatie tussen politie en bevolking.'});
	cvids_911.push({vid:144796, thumb: 'http://i.ytimg.com/vi/3htU3NTqMQs/0.jpg', title: 'FAIL Compilation 2010 || Best Fails of the Year || FUNNY || HD || WEBFAIL.AT', desc: 'More Funny Videos on http://webfail.at/ \nTwitter: http://twitter.com/#!/N0bodyyy\nFacebook: http://tinyurl.com/N0bodyyyFacebook'});
	cvids_911.push({vid:144785, thumb: 'http://i.ytimg.com/vi/u3L2_Z2V2tg/0.jpg', title: 'LUCK Compilation 2010 || Best Luck of the Year || FUNNY || HD || WEBFAIL.AT', desc: 'More Funny Videos on http://webfail.at/\nTwitter: http://twitter.com/#!/N0bodyyy\nFacebook: http://tinyurl.com/N0bodyyyFacebook'});
	cvids_911.push({vid:138388, thumb: 'http://b.vimeocdn.com/ts/895/293/89529317_640.jpg', title: 'Strategische conferentie: Herman Konings', desc: 'Een opname van trendwatcher Herman Konings tijdens de strategische conferentie van de Brabantse Netwerk bibliotheken.'});
	cvids_911.push({vid:138088, thumb: 'http://i.ytimg.com/vi/FVBmJi76u00/0.jpg', title: 'Jawbone Jambox Speaker', desc: 'You Can See More Cheap Speaker at: www.amazon.com'});
	cvids_911.push({vid:134328, thumb: 'http://i.ytimg.com/vi/twGkhsPg5pM/0.jpg', title: 'Trendwatcher Marcel Bullinga - de 9 trends in 2028', desc: 'Tijdens het Innovatiecongres Veiligheid van BZK van 23 juni 2009, hield Trendwatcher Marcel Bullinga een toespraak over de trends in 2009. Hier het deel van de 9 trends. In nog geen 8 minuten een uitstapje naar de toekomst. Lokatie de oude van Nelle fabriek te Rotterdam. Opname Jocko Rensen.'});
	cvids_911.push({vid:133683, thumb: 'http://i.ytimg.com/vi/6JAXRSOUC-w/0.jpg', title: '\"Rain\"  30min Rain Strom on a Metal Roof Without Music', desc: 'The first 10mins the \nStorm is moving and the last 20mins it is moving out!  Hope you enjoy!!!'});
	cvids_911.push({vid:133273, thumb: 'http://i.ytimg.com/vi/fJuNgBkloFE/0.jpg', title: 'Americans are NOT stupid - WITH SUBTITLES', desc: 'So what if they don\u00b4t know how many sides a triangle have? Or who Tony Blair is? That is not fair...just because their president is as intelligent as a door, it doen\u00b4t mean they\u00b4re all like that...if you still think american people are stupi, watch this video and change your mind :)'});
	cvids_911.push({vid:133080, thumb: 'http://i.ytimg.com/vi/z6eamj0m9tc/0.jpg', title: 'Farewell Facebook (Short film about Digital Suicide)', desc: 'Can I be facebookfriends with my parents?\nShould I add someone i don\'t really know?\nWill other people think my status update\'s funny?\n\nI try to answer these and other existential questions in the short documentary \"Farewell Facebook\". \nMaybe you will find these questions quite familiar. Please watch the film and make up your own mind about facebook. \n\nWe need your help to spread this film on Facebook! Since we no longer have an account you\'ll have to do it for us. Thanks!\n\nShort film made for and copyrighted by the Dutch Film and Television Academy (Nederlandse Film en Televisie Academie).\n\nCredits:\nDirector - Joep van Osch\nCreative Producer - Casper Eskes\nD.O.P. - Sanna Mensonides\nSound Design - Thijmen van der Poll\nEditor - Matthias den Hartog\nProduction Design - Claire Lintelo\nVFX Supervisor - Ewoud Visser\n\n\u00a9 2010 AHK/NFTA'});
	cvids_911.push({vid:130660, thumb: 'http://i.ytimg.com/vi/aEolW1x9O3k/0.jpg', title: 'N\'importe Comment - The Toxic Avenger featuring Orelsan augmented reality 3.0', desc: '\"N\'IMPORTE COMMENT\" video, director\'s cut  // \nDigital EP available with remixes by La Caution, Make the Girl Dance, Sawgood, etc : http://itunes.apple.com/fr/album/nimporte-comment-the-remixes/id380478566?uo=4\nVideo Director : David Tomaszewski \nTHE TOXIC AVENGER TOUR :\nJuly 24th -  Plaza Madeleine Social Club -- Paris\nJuly 28th - Theatre de Verdure -- Nice\nAugust 14th - Moving City -- Zurich\nAugust 18th - Palais des Congr\u00e8s des Atlantes -- Les Sables-d\'Olonne\nAugust 28th - Festival Epipapu -- La Chartre\nAugust 29th - Le Mistral -- Aix en Provence\nSept 3rd - Headlining Street tease Birthday @ Nouveau Casino -- Paris\nSept 4th -  Open fields Festival -- Reves -- Belgium\nSept 11th - Festival St Nollf W Laurent Garnier, De Crecy, Jamaica\nSept 16th -  Social club W  Steve Aoki \& A trak -- Paris\nSept 18th -  Razzmataz -- day Barcelona\n\nLABEL - ROY MUSIC :\nLabel Manager - Christophe Tastet // christophe.tastet@roymusic.com\nOffice + 33 1 42 57 11 36 - Mob + 33 6 62 54 71 03\n\nManagement - Gr\u00e9goire Pluchet // gregoirepluchet@mac.com\nMob + 33 6 43 35 67 64\n\nVideo Director : David Tomaszewski // Director of Photography : Guillaume Le Grontec\nProduction company 10h08 - Olivier Chini /'});
	cvids_911.push({vid:130405, thumb: 'http://i.ytimg.com/vi/EHlN21ebeak/0.jpg', title: 'Really: New Windows Phone Ad', desc: ''});
	cvids_911.push({vid:130404, thumb: 'http://i.ytimg.com/vi/42E2fAWM6rA/0.jpg', title: 'Lost Generation', desc: 'I guess I should finally get around to putting something here. I am surprised that it has received so much attention recently. \n\nThis video was created for the AARP U@50 video contest and placed second\n\nIt is based on the Argentinian Political Advertisement \"The Truth\" by RECREAR\n\nhttp://www.youtube.com/watch?v=lFz5jbUfJbk\n\nThe two songs are\nMind things\nOur Lifes, Our Destinies\n\nt r y ^ d\nBeauty\nboth of which are available for free through the creative commons license and on the site http://www.jamendo.com/en/.\n\nBig thanks to Liz for doing the voice over work for this and most of my videos!'});
	cvids_911.push({vid:130329, thumb: 'http://i.ytimg.com/vi/xi1XBNy2O2I/0.jpg', title: 'Koefnoen - Rapservice: John Lennon - Stand By Me', desc: 'Pies, kak en Stand By Me. \nKoefnoen, 2010'});
	cvids_911.push({vid:130102, thumb: 'http://b.vimeocdn.com/ts/941/832/94183294_640.jpg', title: 'Woberator, de documentaire', desc: ''});
	cvids_911.push({vid:129679, thumb: 'http://i.ytimg.com/vi/bG-xK65zOZM/0.jpg', title: 'Sheryl Sandberg, Facebook COO', desc: 'TechCrunch Interviews Sheryl Sandberg, Facebook COO, at the World Economic Forum in Davos, Switzerland. January 2010'});
	cvids_911.push({vid:129678, thumb: 'http://i.ytimg.com/vi/Gm8NdNy4wOM/0.jpg', title: 'Facebook COO Sheryl Sandberg at Nielsen Consumer 360', desc: 'The world now knows a little more about Sheryl Sandberg, Facebook\'s Chief Operating Officer. She runs in Nike shoes, wears Covergirl mascara and her kids eat Cheerios. Sandberg delivered a personal glimpse into her own association with brands and communities as she delivered a keynote address to Nielsen\'s Consumer 360 conference today.'});
	cvids_911.push({vid:129677, thumb: 'http://i.ytimg.com/vi/WFUL1KFiAnI/0.jpg', title: 'Facebook Movie - Social Network Trailer [HD]', desc: 'oct 2010 - Starring: Jesse Eisenberg, Justin Timberlake, Andrew Garfield Facebook is a social networking website launched in February 2004 that is operated and privately owned by Facebook, Inc., with more than 500 million active users in July 2010. Le 21 janvier 2010, un livre non-officiel est publi\u00e9, retra\u00e7ant l\'histoire de la naissance de Facebook, depuis l\'universit\u00e9 de Harvard en 2003 jusqu\'au courant de l\'ann\u00e9e 2009. Le film The Social Network (ou Le r\u00e9seau social au Qu\u00e9bec), retra\u00e7ant la cr\u00e9ation de \u00ab The Facebook \u00bb \u00e0 Harvard, sortira le 1er octobre 2010 dans les salles nord-am\u00e9ricaines, et le 13 octobre 2010 dans les salles fran\u00e7aises. On compte maintenant 500 millions de membres. Founded Cambridge, Massachusetts, United States Founder Mark Zuckerberg Chris Hughes Dustin Moskovitz Eduardo Saverin Headquarters Palo Alto, California Dublin, Ireland (headquarters for Europe, Africa, Middle East) Seoul, South Korea (headquarters for Asia) Area served Worldwide Key people Mark Zuckerberg (CEO) Chris Cox (VP of Product) Sheryl Sandberg (COO) Revenue \u25b2 US million (2009 est.)'});
	cvids_911.push({vid:129676, thumb: 'http://i.ytimg.com/vi/pjyheYZ1BTs/0.jpg', title: 'Facebook COO: Working Moms Need Help from Working Dads', desc: 'Complete video at: fora.tv Facebook COO Sheryl Sandberg reflects on her own experiences as a mother and a woman in the corporate world to call for social change in the work / home balance between men and women. \"We all lose because of this (imbalance),\" she says. \"We limit women\'s ability to contribute in the workforce and, even more importantly, we limit men\'s ability to contribute at home.\" ----- Companies perform better if their female talent is equally integrated, but a decade of data reflects only marginal change in this area. How can we move beyond awareness towards action? In partnership with the World Economic Forum, CNBC hosts this debate focusing on gender parity. - World Economic Forum Sheryl Sandberg joined Facebook in March 2008 as chief operating officer. In this role, she is responsible for Facebooks business operations, including sales, marketing, business development, human resources, public policy, privacy, and communications. Ms. Sandberg joined Facebook after six years at Google, where she served as vice president of Global Online Sales and Operations. In that role, she built and managed Googles online sales channels and managed global operations for Googles consumer products. Ms. Sandberg was also a leader for the companys philanthropic efforts. She created the Google Grants program, which donated over  million dollars of advertising to nonprofits worldwide. The Economist called her the unseen driving force behind the creation of Google.org ...'});
	cvids_911.push({vid:129395, thumb: 'http://i.ytimg.com/vi/sSTLDel-G9k/0.jpg', title: 'How to Cut Carbon Emissions', desc: 'http://www.1010global.org/no-pressure\n\nWhippersnapping climate campaign 10:10 teams up with legendary comic screenwriter Richard Curtis - you know, Blackadder, Four Weddings, Notting Hill, co-founded Comic Relief - and Age of Stupid director Franny Armstrong to proudly present their explosive new mini-movie \"No Pressure\". The film stars X-Files\' Gillian Anderson, together with Spurs players past and present - including Peter Crouch, Ledley King and David Ginola - with music donated by Radiohead. Shot on 35mm by a 40-strong professional film crew led by director Dougal Wilson, \"No Pressure\" celebrates everybody who is actively tackling climate change... by blowing up those are aren\'t.\n\nhttp://redactednews.blogspot.com/2010/10/us-to-apologize-for-1940s-deadly.html\nhttp://redactednews.blogspot.com/2010/09/911-global-warming-and-other-crimes.html\nhttp://whatreallyhappened.com/WRHARTICLES/climategate.php\nhttp://redactednews.blogspot.com/2010/10/how-to-cut-carbon-emissions.html'});
	cvids_911.push({vid:128676, thumb: 'http://i.ytimg.com/vi/4GtbnZnwpQA/0.jpg', title: 'Cords (hear us and have mercy).m4v', desc: ''});
	cvids_911.push({vid:128674, thumb: 'http://i.ytimg.com/vi/3NCERD-r9VE/0.jpg', title: 'Newsday iPad App', desc: 'This video was uploaded from an Android phone.'});
	cvids_911.push({vid:128131, thumb: 'http://i.ytimg.com/vi/XhV7htvYQ8c/0.jpg', title: 'Gizmo - Blackberry Playbook - First Look', desc: 'When we heard about a Blackberry tablet, we weren\'t too excited, but when we finally saw it...HOLY SMOKES!  This thing is freakin amazing!   This is what the iPad should\'ve been!  It is loaded with so many features I don\'t even know where to start!  Let\'s hope this is a KO for the iPad domination in the market!  \n\n\nBlackberry Playbook Tech Specs\nBuilt-in Support for HTML 5  |  Full Adobe\u00ae Flash\u00ae 10.1 Enabled\n7\" LCD display  |  1024 x 600 Screen Resolution  |  Crystal Clear HD Display \n  1 GHz Dual-Core Processor  |  1GB RAM\n Built-in microUSB Connector\nMulti-touch Capacitive Screen\nWi-Fi\u00ae 802.11 a/b/g/n  \& 3G Access\nPowerful, User-friendly QNX Technology \nOn-screen Keyboard\nTrue Multi-tasking\nRich Stereo Sound\n3 MP high definition forward-facing camera\n5 MP high definition rear-facing camera\nCodec support for superior media playback, creation and video calling\n1080p HD video; H.264, MPEG4, WMV HDMI video output'});
	cvids_911.push({vid:127776, thumb: 'http://i.ytimg.com/vi/Gngr3RF_eBY/0.jpg', title: 'iPhone versus Windows Phone 7', desc: 'This is a comparison of iPhone with Windows Phone 7. We talk about the interfaces of both and how they differ. Windows Phone 7 uses a Start screen as its launcher where you can place a variety of live tiles. The iPhone is very application-centric. We also talk about how Windows Phone 7 doesn\'t do fast app switching, while the iPhone does.'});
	cvids_911.push({vid:127695, thumb: 'http://i.ytimg.com/vi/SrmCex6-wbI/0.jpg', title: 'Twitter Documentary: Twittamentary Teaser #1', desc: 'Follow us on Twitter: @twittamentary\n\nA Twitter Documentary crowd-sourced by social medians worldwide. Directed by Tan Siok Siok @sioksiok .'});
	cvids_911.push({vid:116757, thumb: 'http://i.ytimg.com/vi/YkcLLI6Yv8I/0.jpg', title: 'iPhone 4 Disassembly by TechRestore', desc: '1784  hi-res photos combine to make a stop-motion expose of the iPhone 4, revealing every detail of construction, from packaging, down to the chips on the logic-board.  Set to a custom electronic/glitch soundtrack, with fast paced action, this is no ordinary unboxing and take-apart video!'});
	cvids_911.push({vid:116045, thumb: 'http://i.ytimg.com/vi/qOP2V_np2c0/0.jpg', title: 'RSA Animate - Crises of Capitalism', desc: 'In this RSA Animate, radical sociologist David Harvey asks if it is time to look beyond capitalism towards a new social order that would allow us to live within a system that really could be responsible, just, and humane?\n\nThis is based on a lecture at the RSA (www.theRSA.org).'});
	cvids_911.push({vid:115998, thumb: 'http://i.ytimg.com/vi/FL7yD-0pqZg/0.jpg', title: 'iPhone4 vs HTC Evo', desc: 'I need an iPhone 4 | If you enjoyed this video, you\'ll hate my lame webcomic! Don\'t bother viewing it at www.acocomic.com | Facebook Page: http://www.facebook.com/pages/Tiny-Watch-Productions/120478227997138 | Twitter: @tinywatches'});
	cvids_911.push({vid:115379, thumb: 'http://i.ytimg.com/vi/CiSwX7lW7xE/0.jpg', title: 'Maradona la Mano De Dios', desc: 'LA MANO DE DIOS'});
	cvids_911.push({vid:115378, thumb: 'http://i.ytimg.com/vi/vpy7cjMAxDg/0.jpg', title: 'De Henry van Loon entertainmentshow: De Bloopershow', desc: 'De bloopershow'});
	cvids_911.push({vid:115377, thumb: 'http://i.ytimg.com/vi/CV-U3nVZWPE/0.jpg', title: 'Henry van Loon op ACF - DWDD', desc: 'Henry van Loon op ACF - DWDD\nDe wereld draait door in drie minuten'});
	cvids_911.push({vid:115198, thumb: 'http://i.ytimg.com/vi/L5t4bxBTrbM/0.jpg', title: 'A Little iPad Magic by a Street Magician! [Eng Sub]', desc: 'TUAW, \"Here\'s a little iPad magic for your Memorial Day afternoon -- turns out the iPad really is a \"magical\" device. I\'m not sure what app video is being used here, but I think it\'s a proprietary one, and probably not something you could use yourself (unless you know how to do some of the great slight-of-hand stuff that this guy is doing).\" [This video was posted by salarymagican]'});
	cvids_911.push({vid:115197, thumb: 'http://i.ytimg.com/vi/vTSDPKktbUk/0.jpg', title: 'The iPad and Velcro, a Match Made in Heaven [HD]', desc: 'Gizmodo, \"At first, I thought this would be a bad idea. But having watched this video, I kind of want to stick velcro all over my apartment.\" [This video was posted by Jesse Rosten at DV Culture ] [Visit his website at www.jesserosten.com]'});
	cvids_911.push({vid:114093, thumb: 'http://i.ytimg.com/vi/nXQdy-22TXM/0.jpg', title: 'Vital statistics for B2B Marketers', desc: 'For links to all of the Vital Statistics sources used in this video, please visit: http://ht.ly/1WG3j. Use and abuse them at your leisure. To find out more about Earnest please visit www.earnest-agency.com'});
	cvids_911.push({vid:114092, thumb: 'http://i.ytimg.com/vi/W4o0ZVeixYU/0.jpg', title: 'The Slide', desc: 'The slide -- driven by fun.\nA long staircase. Next to it a slide. Which way would you go?\nCheck out the Fast Lane and the new Polo GTI on www.facebook.com/volkswagen'});
	cvids_911.push({vid:113558, thumb: 'http://i.ytimg.com/vi/6_hJ3R8jEZM/0.jpg', title: 'Introducing a new Google Docs', desc: 'http://docs.google.com  | Google Docs lets you create, share, and collaborate on documents online.   And it just got better with rebuilt editors for documents, spreadsheets, and drawings, designed to improve collaboration, increase speed, and create richer documents.'});
	cvids_911.push({vid:112743, thumb: 'http://i.ytimg.com/vi/OJsnqa4yWfA/0.jpg', title: 'WWDC 2010 Keynote in 4 minutes and 47 seconds', desc: 'Cut down version of the WWDC 2010 keynote presented by Steve Jobs. For informational use'});
	cvids_911.push({vid:112558, thumb: 'http://a.images.blip.tv/Vincente-LijsttrekkersOverTwitterVerkiezingsgala106-795.jpg', title: 'Rutte, Halsema, Cohen \& Pechtold over gebruik twitter #Verkiezingsgala', desc: 'Fragment van interview lijsttrekkers op het Verkiezingsgala in Paradiso, over gebruik Twitter'});
	cvids_911.push({vid:111708, thumb: 'http://i.ytimg.com/vi/u6XAPnuFjJc/0.jpg', title: 'RSA Animate - Drive: The surprising truth about what motivates us', desc: 'This lively RSA Animate, adapted from Dan Pink\'s talk at the RSA, illustrates the hidden truths behind what really motivates us at home and in the workplace.\nwww.theRSA.org'});
	cvids_911.push({vid:111707, thumb: 'http://i.ytimg.com/vi/u6XAPnuFjJc/0.jpg', title: 'RSA Animate - Drive: The surprising truth about what motivates us', desc: 'This lively RSA Animate, adapted from Dan Pink\'s talk at the RSA, illustrates the hidden truths behind what really motivates us at home and in the workplace.\nwww.theRSA.org'});
	cvids_911.push({vid:111343, thumb: 'http://i.ytimg.com/vi/6j-66xxU7T4/0.jpg', title: 'de nPad van Hugo Lijtens in het NOS journ', desc: ' '});
	cvids_911.push({vid:111168, thumb: 'http://i.ytimg.com/vi/w2s9Fv_j1eg/0.jpg', title: 'Eric Topol at TEDMED 2009', desc: 'Eric talks about the frontiers of wireless medicine!'});
	cvids_911.push({vid:109733, thumb: 'http://i.ytimg.com/vi/A3MU1UPeFr4/0.jpg', title: 'Sony IPT-DS1 Party-shot hands on review', desc: 'We had an impromptu party at Stuff Towers and Sony\'s Party-shot was there to capture all the action. But what do you make of it - is it as impressive as it sounds?'});
	cvids_911.push({vid:107930, thumb: 'http://a.images.blip.tv/Vincente-ObamaKillsAtWHCDApprovalRatingsAreHighInCountryOfMyB312-961.jpg', title: 'Obama Kills At WHCD: \"Approval Ratings Are High In Country Of My Birth\"', desc: 'Barak Obama hit a home run during the White House Correspondents dinner. A big deal. He was amazingly sharp, made big fun of Jay Leno, Sara Palin, Biden etc. REALLY funny.'});
	cvids_911.push({vid:107081, thumb: 'http://i.ytimg.com/vi/I8gpNbEy9iA/0.jpg', title: 'Habanera - Carmen', desc: 'Agnes Baltsa en el rol de Carmen'});
	cvids_911.push({vid:106937, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/456/355/45635533_640.jpg', title: 'Stand-up Inspiration in moving pictures (1)', desc: ''});
	cvids_911.push({vid:105712, thumb: 'http://i.ytimg.com/vi/-2o3tHGIa9c/0.jpg', title: 'Introducing PreziDesktop3', desc: 'PreziDesktop3 has some cool new features to play with: save to a new native file format: pez, export to pdf and print, upload, manage, import easier than ever.'});
	cvids_911.push({vid:105631, thumb: 'http://i.ytimg.com/vi/Fs79QEbWrLc/0.jpg', title: 'iPad Disassembly by TechRestore', desc: 'See inside the Apple iPad, from box to compete take-apart and back, in under 3 minutes - all done in our famous stop-motion style!'});
	cvids_911.push({vid:105246, thumb: 'http://i.ytimg.com/vi/X1w1FvgdZnE/0.jpg', title: '5 - Atmosphere: The Mobile Internet', desc: 'The Mobile Internet with Mary Meeker, Managing Director, Morgan Stanley'});
	cvids_911.push({vid:105200, thumb: 'http://i.ytimg.com/vi/gew68Qj5kxw/0.jpg', title: 'Alice for the iPad', desc: 'Download it now from the app store! Tilt your iPad to make Alice grow big as a house, or shrink to just six inches tall. This is Alice in Wonderland digitally remastered for the iPad. Play with the White Rabbit\'s pocket watch - it realistically swings and bounces. Help Alice swim through a Pool of Tears. Or hand out sweets that bounce and collide with the magical talking Dodo. This wonderful lite edition is the first instalment of Alice\'s journey and includes an amazing selection of animated scenes. Watch as full screen physics modelling bring the classic illustrations to life.'});
	cvids_911.push({vid:104229, thumb: 'http://i.ytimg.com/vi/q7K0vRUKXKc/0.jpg', title: 'Paul Graham at Startup School 08', desc: 'Paul Graham, founder of ycombinator, speaks at Startup School 08 about how to create a successful startup.'});
	cvids_911.push({vid:104223, thumb: 'http://i.ytimg.com/vi/cNUQ7mn4pQc/0.jpg', title: 'iPhone 3G Launch Party Rotterdam', desc: 'video verslagje van de iPhone 3G launch party in Rotterdam.'});
	cvids_911.push({vid:104201, thumb: 'http://i.ytimg.com/vi/nojWJ6-XmeQ/0.jpg', title: 'Banned Commercial - Condoms', desc: 'Banned Commercial - Condoms very funny, funny video\nhttp://www.mp3doctor.com/\nhttp://www.supermp3normalizer.com/\nhttp://mp3tools.mp3doctor.com\nhttp://satellite-tv-for-pc.watch-satellite-tv-inter.net/'});
	cvids_911.push({vid:104200, thumb: 'http://i.ytimg.com/vi/SdL6dzWvm5M/0.jpg', title: 'Alan Kay on interaction experiments', desc: '1987'});
	cvids_911.push({vid:103453, thumb: 'http://i.ytimg.com/vi/lwGQaa1_dFg/0.jpg', title: 'DNA-test aan boord met Henk Roelink', desc: 'Varend op de Stille Oceaan vertelt Henk Roelink over de voor- en nadelen van het kennen van je eigen DNA. Tegelijkertijd vraagt hij de bemanning om te stemmen. Wie wil zijn eigen DNA kennen? De stelling van Henk is: wie zijn DNA-profiel wil kennen, moet bereid zijn alle nadelen te accepteren. Meer van Beagle, in het kielzog van Darwin: beagle.vpro.nl www.twitter.com vprobeagle.hyves.nl http www.flickr.com'});
	cvids_911.push({vid:103443, thumb: 'http://i.ytimg.com/vi/Gpypn-JIPng/0.jpg', title: 'South by SouthWest (SXSW) Vicarious.ly Visualization', desc: 'This is the data SimpleGeo collected from the eight geolocated data providers (FourSquare, Gowalla, Twitter, Flickr, Bump, Brightkite, BlockChalk, and Fwix) during the South by SouthWest Interactive Festival. The live datastream was available on http://austin.vicarious.ly, but we thought people might enjoy a conference retrospective in data. If you\'d like to have access to this data and more, and/or outsource your entire geolocation infrastructure to the experts in massive geodatasets, check out http://simplegeo.com; we\'re in Beta right now, with a full launch at the end of March!\nCreated with Processing (http://processing.org/ ).\nMaps from the OpenStreetMap project (http://www.openstreetmap.org ).\nMusic: \"Pocket Tanks,\" Eliran Ben-Ishai (DNA-Groove).'});
	cvids_911.push({vid:102281, thumb: 'http://i.ytimg.com/vi/82JP8to1Q_A/0.jpg', title: 'Het Nieuwe Werken Interview: Manja Jongsma van SNS Reaal', desc: 'Manja Jongsma, programmadirecteur Het Nieuwe Werken bij SNS Reaal vertelt over haar ervaringen bij het invoeren van Het Nieuwe Werken binnen haar organisatie.'});
	cvids_911.push({vid:99738, thumb: 'http://i.ytimg.com/vi/afwq2_HGJ1A/0.jpg', title: 'Apple WWDC 2009 Keynote - TomTom for iPhone announcement by Peter-Frans Pauwels', desc: 'Apple WWDC 2009 Keynote presentation, highlighting the announcement by Peter-Frans Pauwels, CTO of tomtom. Announcing tomtom for iphone and presenting the full solution and demonstrating the application (tomtom App for iphone) and carkit (tomtom car kit for iphone).'});
	cvids_911.push({vid:99737, thumb: 'http://i.ytimg.com/vi/9Z4b9Rl_6ik/0.jpg', title: 'Strijdbare buschauffeurs', desc: 'SP-Kamerlid Emile Roemer was vandaag samen met een aantal SP-ers in Utrecht om de duizenden stakende buschauffeurs te laten weten dat de SP achter hen staat in hun strijd voor een fatsoenlijk loon. Roemer: \"Het is fantastisch om te zien dat zoveel chauffeurs bij elkaar komen om te strijden voor een eerlijk loon en fatsoenlijke arbeidsvoorwaarden. Ik hoop dat dit ook naar de politiek een signaal is dat er nu echt iets moet gebeuren.\"'});
	cvids_911.push({vid:99736, thumb: 'http://i.ytimg.com/vi/8_9jomMef7s/0.jpg', title: 'OV Chipkaart', desc: 'Treinreiziger.nl vroeg aan Tweede Kamerleden wat zij van de OV Chipkaart vonden. Lia Roefs (pvda), Paul de Krom (VVD) en Emile Roemer (SP) over de OV-Chipkaart'});
	cvids_911.push({vid:99735, thumb: 'http://i.ytimg.com/vi/vzebX4j8Zmc/0.jpg', title: 'Staatssecretaris Huizinga draait 180 graden', desc: 'Staatssecretaris Tineke Huizinga (christenunie) ontkende tijdens de behandeling van de begroting Verkeer en Waterstaat (26/11/2009) eerst tegenover SP-Kamerlid Emile Roemer dat er problemen zijn met de OV-chipkaart. Maar even later zag ze tijdens een debatje met groenlinks-Kamerlid Kees Vendrik plotsing het licht: ze belooft dat alle problemen, die er eerst volgens haar niet waren, opgelost zullen zijn zodra de OV-chipkaart in het hele land is ingevoerd.'});
	cvids_911.push({vid:99734, thumb: 'http://i.ytimg.com/vi/RVzgLeIAA8s/0.jpg', title: 'Onze bus moet \u00e9\u00e9n euro blijven', desc: 'Verslag van de \"euroactie\" van SP apeldoorn voor het behoud van het euroretourtje voor de bus in Apeldoorn. De SP Apeldoorn overhandigde zaterdag 27 september 2008 3.000 handtekeningen aan wethouder Metz van Apeldoorn. Met interviews met onder andere Emile Roemer, SP kamerlid en Eric van Kaathoven, SP fractievoorzitter in Gelderse Staten.'});
	cvids_911.push({vid:99722, thumb: 'http://i.ytimg.com/vi/Gozf-UZF8H8/0.jpg', title: 'Wilders bij Barend \& Van Dorp 24-09-2001', desc: 'Zie: www.joop.nl'});
	cvids_911.push({vid:97842, thumb: 'http://i.ytimg.com/vi/5q-HtdW03Zs/0.jpg', title: 'Windows Phone 7 Series Announce Video', desc: 'Ready. Set. Windows Phone 7 Series. Industry insiders at the Mobile World Conference in Barcelona were treated to one of these with the introduction of Windows Phone 7 Series. Weve transformed the mobile experience by aligning your apps, your contacts, and most importantly \u2014 your phone\u2014 with your life in motion. Now its your chance to see what its all about \u2014 check out our launch video.'});
	cvids_911.push({vid:95861, thumb: 'http://i.ytimg.com/vi/tKg5-asGRHY/0.jpg', title: 'Airplane Lands on Jeep on Freeway', desc: '405: The Movie. The story of the wrong guy - in the wrong place - at the wrong time. by Bruce Branit and Jeremy Hunt.'});
	cvids_911.push({vid:95507, thumb: 'http://i.ytimg.com/vi/y87x0zWFIXI/0.jpg', title: 'Senior Skype', desc: 'Windy Hill Senior Center members share their recollections of the Depression Era with history students from Spring Grove High School via Skype, a computer program which provides video conferencing.'});
	cvids_911.push({vid:95387, thumb: 'http://i.ytimg.com/vi/YRlM-DiZWgg/0.jpg', title: 'LLMedia VNC Plug-in : Remote desktop sharing for Second LIfe', desc: 'This video demonstrates accessing several remote desktops through my VNC client plug-in for Second Life, written using the new llmedia plug-in API. Shown here running in Linden Lab\'s plug-in test application, these will in future be accessible on the surface of a Second Life prim in the same way as a parcel media stream. Watch in fullscreen HD to see what\'s going on properly :) The first section of the video demonstrates the potential for desktop sharing, with two independent plug-in instances connected to one Apple Remote Desktop server running on my Macbook Pro, editing an openoffice document in real-time. This is equivalent to two (or more) Second Life clients viewing and interacting with the remote desktop on the same prim. We then move on to view another plug-in instance connected to a different server (Apple Remote Desktop on a Mac Mini G4). The final section demonstrates entering a URI (equivalent to changing the parcel media stream in SL) to connect to another server (ultravnc on a Vista laptop) which is itself running a Second Life client (I probably should have turned the shadows off to improve the frame rate, but they\'re so pretty!) This effectively gives Second Life on a \"prim\", Third Life anyone? :) Filmed on location in \"Kernow\" my home island in Second Life, visitors welcome :) slurl.com Music: Dreamscape, by 009 Sound System'});
	cvids_911.push({vid:95385, thumb: 'http://assets.vimeo.com/thumbnails/defaults/default.75x100.jpg', title: 'WWD Screencast: Redliner', desc: 'A WebWorkerDaily screencast on Redliner, a collaborative document editing tool.'});
	cvids_911.push({vid:95384, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/339/409/33940903_640.jpg', title: 'WWD Screencast: 280 Slides', desc: 'A WebWorkerDaily screencast of presentation web app, 280 Slides.'});
	cvids_911.push({vid:95367, thumb: 'http://i.ytimg.com/vi/Lqc6sAFBUz0/0.jpg', title: 'Success Story of the Month: Richard Woods, DIY Kyoto', desc: 'Richard Woods is one of the three founders of DIY Kyoto. They developed wattson, the energy monitor that shows you how much electricity your home is using. DIY Kyoto has received \u00a31/2m worth in investment and wattson is now in production with distribution deals around the world.'});
	cvids_911.push({vid:95366, thumb: 'http://i.ytimg.com/vi/CRPskwgueDA/0.jpg', title: 'Wattson with Greta Corke, DIY Kyoto, at Designers Block 2006', desc: 'The Designers Block is in a series of derelict buildings on Shoreditch High Street in London yards away from corporate headquarters and finance activity of the City of London. Somehow the power always gets turned on for the show, and DIY Kyoto found a way to measure it as it comes into their stand with the amazing Wattson device that can tell you how much energy you are using and how much it is costing you. Sarah Rich covered the unveiling of the Wattson box in April at the Milan Designers Block, but I caught up with Greta Corke in London after a hard weekend in their justifiably mobbed stand. Photos courtesy of DIY Kyoto. London Design Festival photo courtesy of the festival.'});
	cvids_911.push({vid:95365, thumb: 'http://i.ytimg.com/vi/l5xmmHl-fBw/0.jpg', title: 'The Gadget Show: Web TV Episode 53  Wattson Energy Monitor \& Veho Wireless Speakers', desc: 'Jon checks out his energy consumption with the Wattson, Ortis plays with Veho\'s wireless speakers, and Dionne brings us the latest gadget news. For more videos, news and reviews go to fwd.five.tv'});
	cvids_911.push({vid:95363, thumb: 'http://i.ytimg.com/vi/84V-yqRftsI/0.jpg', title: 'Wattson energiemeter', desc: 'Wattson geeft je onmiddellijk feedback over je stroomverbruik. Trek een stekker uit het stopcontact en je ziet wat je bespaart.'});
	cvids_911.push({vid:95097, thumb: 'http://i.ytimg.com/vi/r6dfh95QcIY/0.jpg', title: 'Forest Fire Time Lapse', desc: 'A series of time lapse videos of forest fires. These fires were in the Kamloops area of British Columbia, Canada - Notch Hill near Shuswap Lake, Martin Mountain near Pritchard, and Mount mclean beside Lillooet. These time-lapses are shot with a 12 mega pixel digital single lens reflex cameras. Original resolution is 6 times better then HD (high definition). The images have been resized for HD and are much better quality then shown here on youtube. Video clips are for sale. For more information contact us at timelapsehd@hotmail.com. Thanks and enjoy!'});
	cvids_911.push({vid:95096, thumb: 'http://i.ytimg.com/vi/CJpxfrQa5DE/0.jpg', title: 'Las Vegas Time Lapse', desc: 'Time lapses of Las Vegas showing various casinos and the strip. These time-lapses are shot with 12 mega pixel digital single lens reflex cameras. Original resolution is 6 times better then HD (high definition). The images have been resized for HD and are much better quality then shown here on youtube. Video clips are for sale. For more information contact us at timelapsehd@hotmail.com. Thanks and enjoy.'});
	cvids_911.push({vid:95095, thumb: 'http://i.ytimg.com/vi/3r6-y9wmXIA/0.jpg', title: 'Grand Canyon Time Lapse', desc: 'A series of time lapses around the amazing Grand Canyon National Park, Arizona. These time-lapses are shot with a 12 mega pixel digital single lens reflex cameras. Original resolution is 6 times better then HD (high definition). The images have been resized for HD and are much better quality then shown here on youtube. Video clips are for sale. For more information contact us at timelapsehd@hotmail.com. Thanks and enjoy!'});
	cvids_911.push({vid:95093, thumb: 'http://i.ytimg.com/vi/_xMz2SnSWS4/0.jpg', title: 'Vancouver City', desc: '\"Vancouver City\" music video is an artistic collaboration between Innerlife Project and timelapsehd. For more information and music downloads go to www.innerlifeproject.com These time lapses are shot with a 12 mega pixel digital single lens reflex cameras. Original resolution is 6 times better then HD (high definition). The images have been resized for HD and are much better quality then shown here on youtube. Video clips are for sale. For more information contact us at timelapsehd@hotmail.com. Thanks and enjoy!'});
	cvids_911.push({vid:94024, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/447/718/44771848_640.jpg', title: 'Interview met Dirk de Geus over Enercities (green sim city)', desc: 'The good, the bad \& the ugly in het werken met de europese gemeenschapSkype interview en demo met Dirk de Geus. Zij maakte als'});
	cvids_911.push({vid:94023, thumb: 'http://a.images.blip.tv/Vincente-InterviewMetDirkDeGeusOverEnercitiesGreenSimCity949-650-241.jpg', title: 'Interview met Dirk de Geus over Enercities (green sim city)', desc: '\nThe good, the bad \& the ugly in het werken met de europese gemeenschapSkype interview en demo met Dirk de Geus. Zij maakte als\n'});
	cvids_911.push({vid:93895, thumb: 'http://i.ytimg.com/vi/M_am3uTrMhU/0.jpg', title: 'Monkey and Segway', desc: 'getablet.com'});
	cvids_911.push({vid:93812, thumb: 'http://ats.vimeo.com/439/901/43990115_640.jpg', title: '\'curiosity\'', desc: '\' ... over \& over \& over again the curious are punished.\''});
	cvids_911.push({vid:93810, thumb: 'http://i.ytimg.com/vi/J5TI3gzx3JA/0.jpg', title: 'Social Media Addicts Association Meeting', desc: 'www.stopwritingonmywall.com Behind the scenes filming at a Social Media Addicts Association meeting, with members discussing the problems caused by their addiction in graphic detail. Be warned - this is harrowing viewing, not for the faint hearted!'});
	cvids_911.push({vid:93809, thumb: 'http://i.ytimg.com/vi/h-qRhn_ixGs/0.jpg', title: 'Dhaka - Bangladesh - EuroNews - No Comment', desc: 'Residents of Bangladesh prepares to celebrate the first day of Eid al-Adha.'});
	cvids_911.push({vid:93569, thumb: 'http://a.images.blip.tv/Vincente-InterviewMetDirkDeGeusOverEnercitiesGreenSimCity805-711.jpg', title: 'Interview met Dirk de Geus over Enercities (green sim city)', desc: 'The good, the bad \& the ugly in het werken met de europese gemeenschapSkype interview en demo met Dirk de Geus. Zij maakte als'});
	cvids_911.push({vid:93312, thumb: 'http://i.ytimg.com/vi/KKchgm9Nslk/0.jpg', title: 'NTT DoCoMo Mobile Future', desc: 'Future of Mobility by NTT docomo'});
	cvids_911.push({vid:93277, thumb: 'http://i.ytimg.com/vi/yRPIZ_K1q38/0.jpg', title: 'Learn to myngle!', desc: 'Find out what is Myngle about! Introducing the new online language destination!'});
	cvids_911.push({vid:93276, thumb: 'http://ak2.static.dailymotion.com/static/video/395/589/15985593:jpeg_preview_large.jpg?20090607160202', title: 'Google Gap at SMX London 2009 - Rand Fishkin', desc: 'SMX London 2009, investigating what the Google Gap is: let\'s ask Rand Fishkin!  A series of video interviews by Massimo Burgio http://www.globalsearchinteractive.net for a SearchCowboys article. http://www.searchcowboys.com'});
	cvids_911.push({vid:91521, thumb: 'http://i.ytimg.com/vi/gfrEWdc7IUo/0.jpg', title: '-10- Trends 2010 bij RTL4-show \'Hoe wordt 2010? - Trendwatcher Richard Lamb', desc: 'Trends 2010 bij RTL4-show \'Hoe wordt 2010? - Trendwatcher Richard Lamb'});
	cvids_911.push({vid:91175, thumb: 'http://cdn-thumbs.viddler.com/thumbnail_2_51b063e8.jpg', title: 'ipad', desc: ''});
	cvids_911.push({vid:91174, thumb: 'http://i.ytimg.com/vi/lsjU0K8QPhs/0.jpg', title: 'Mad Tv - IPad', desc: 'The new Apple IPad '});
	cvids_911.push({vid:91039, thumb: 'http://i.ytimg.com/vi/v3ORrTOjHYk/0.jpg', title: 'tablet_photoshop_2.mov', desc: 'The upcoming Apple event on Wednesday january 27th inspired dozens of Photoshop artists to create their own iPad, iSlate, iBook or iTablet. Or perhaps one of these 18 mockups is the real one? Read more (Dutch): www.nrc.nl '});
	cvids_911.push({vid:89720, thumb: 'http://i.ytimg.com/vi/k7VOAM-rbB8/0.jpg', title: 'Large Impact Simulation', desc: ''});
	cvids_911.push({vid:89719, thumb: 'http://s.mnstat.com/3393-large.jpg', title: 'Large Hadron Collider - How does it work?', desc: 'Nice animation that explains how speed at some point reaches a maximum and from there on only changes in mass.\r\nLet\'s hope they get their answers related to the Higgs particle and not end up swallowing the world in a black hole.'});
	cvids_911.push({vid:89603, thumb: 'http://i.ytimg.com/vi/BzHAsafYw9E/0.jpg', title: '\'t Schaep met de vijf poten - Zing, vecht, huil, bid, lach, werk en bewonder', desc: 'd\'un feuilleton hollandais: Le Mouton \u00e0 cinq pattes Voor degene in een schuilhoek achter glas Voor degene met de dichtbeslagen ramen Voor degene die dacht dat-ie alleen was Moet nu weten, we zijn allemaal samen Voor degene met `t dichtgeslagen boek Voor degene met de snelvergeten namen Voor degene die `t vruchteloze zoeken Moet nu weten, we zijn allemaal samen refr.: Zing, vecht, huil, bid, lach, werk en bewonder Zing, vecht, huil, bid, lach, werk en bewonder Zing, vecht, huil, bid, lach ...'});
	cvids_911.push({vid:89602, thumb: 'http://i.ytimg.com/vi/nonTU0PjKPI/0.jpg', title: '\'t Schaep met de 5 poten - Het zal je kind maar wezen.flv', desc: ''});
	cvids_911.push({vid:89601, thumb: 'http://i.ytimg.com/vi/Pq-HODy6Gfo/0.jpg', title: 'Wilt U een Stekkie van de Fuchsia uit Ja Zuster Nee Zuster', desc: 'Een van de weinige overgebleven filmpjes van de vermaarde jaren 60 tv serie '});
	cvids_911.push({vid:89600, thumb: 'http://i.ytimg.com/vi/NCkbjNgPX5g/0.jpg', title: 'Ja Zuster Nee Zuster - In een Rijtuigie', desc: 'Originele opname uit de jaren zestig '});
	cvids_911.push({vid:89599, thumb: 'http://i.ytimg.com/vi/gnuO5joXLn8/0.jpg', title: 'Leen Jongewaard \& Hetty Blok - M\'n Opa', desc: 'Elke zondagmiddag bracht ie toffies voor me mee Ik weet nog de spelletjes die opa met me dee Restaurantje spelen en mn opa was de kok Bokkewagen spelen en mn opa was de bok refr. M\'n opa, m\'n opa. m\'n opa In heel Europa was er niemand zoals jij M\'n opa, m\'n opa. m\'n opa En niemand was zo aardig voor mij In heel Europa, m\'n ouwe opa Nergens zo iemand als jij Niemand zo aardig voor mij M\'n opa, m\'n opa, m\'n opa Niemand zo aardig voor mij M\'n ouwe opa Als ik me verveelde ging ik altijd naar hem ...'});
	cvids_911.push({vid:89594, thumb: 'http://i.ytimg.com/vi/tfHcjFJ3bAk/0.jpg', title: 'Met Catootje naar de Botermarkt', desc: 'www.vidap.nl Remake van Catootje / Katootje. Op de hoes van de single met de originele uitvoering (door het ensemble van Wim Sonneveld) staat de titel geschreven als \'Katootje\' maar meestal wordt het geschreven als \'Catootje\'. Volledige titel: \"Ik ben met Katootje/Catootje naar de Botermarkt gegaan\". Deze video is gemaakt om de mogelijkheden van het videomontageprgramma Video DeLuxe 2005 Plus van Magix te demonstreren. ... dominee tover heks terrific-witch inn-keeper baroness chubby-girl old ...'});
	cvids_911.push({vid:89593, thumb: 'http://i.ytimg.com/vi/-ZWd3BF8T2U/0.jpg', title: 'wim sonneveld - margootje', desc: 'een nummer uit een cabbaret voorstelling van wim sonneveld ... wim sonneveld cabaret fun humor theater voorstelling la mar margootje annie mg schmid '});
	cvids_911.push({vid:89579, thumb: 'http://i.ytimg.com/vi/4tqQnAuOnRk/0.jpg', title: 'wim sonneveld - zij kon het lonken niet laten', desc: 'een stukje uit een cabaret voorstelling van wim sonneveld '});
	cvids_911.push({vid:89578, thumb: 'http://i.ytimg.com/vi/MhdQ59LHorQ/0.jpg', title: 'wim sonneveld - aan de amsterdamse grachten', desc: 'een stukje uit een cabaret voorstelling van wim sonneveld '});
	cvids_911.push({vid:89532, thumb: 'http://i.ytimg.com/vi/iNzrwh2Z2hQ/0.jpg', title: '25 hits in 5m DJ Earworm - United State of Pop 2009 (Blame It on the Pop) - Mashup of Top 25 Billboard Hits', desc: 'mp3 download \u2192 djearworm.com A Mashup of the Top 25 Hits of 2009, according to Billboard. facebook.com djearworm.com The Black Eyed Peas - BOOM BOOM POW Lady Gaga - POKER FACE Lady Gaga Featuring Colby O\'Donis - JUST DANCE The Black Eyed Peas - I GOTTA FEELING Taylor Swift - LOVE STORY Flo Rida - RIGHT ROUND Jason Mraz - I\'M YOURS Beyonce - SINGLE LADIES (PUT A RING ON IT) Kanye West - HEARTLESS The All-American Rejects - GIVES YOU HELL Taylor Swift - YOU BELONG WITH ME TI Featuring Justin ...'});
	cvids_911.push({vid:89372, thumb: 'http://i.ytimg.com/vi/JFVkzYDNJqo/0.jpg', title: 'Choose A Different Ending: start', desc: 'Choose A Different Ending is an interactive film that allows you to decide what happens next. You can interact with it, choose what to do and decide how it ends. In Choose A Different Ending you decide whether to live or die. www.droptheweapons.org '});
	cvids_911.push({vid:89340, thumb: 'http://i.ytimg.com/vi/0_W1sP344NM/0.jpg', title: 'Nike - Men Vs Woman NEW Commercial 2009', desc: 'Eva Longoria in new men vs women Nike ad also featuring Sofia Boutella, Fernando Torres,Zlatan Ibrahimovic and Rodger Federer. '});
	cvids_911.push({vid:86839, thumb: 'http://i.ytimg.com/vi/7GM4Lt5k24s/0.jpg', title: 'Ex-Microsoft employee remembers the last sound he heard at Microsoft: Bing!', desc: 'How one Microsoft employee didn\'t \"bing\" good enough for Steve Ballmer. About The Video: At a time when Americans are scared, jobless, and homeless, we wanted to create a comedy that would resonate with how Americans are feeling. We are Scott Rose and Ernie Brandon, a screenwriting duo in Los Angeles, and we don\'t have anything to give back to America except for belly laughs. This video is a teaser for our new comedy screenplay about what it means to be a little guy in the land of giants ...'});
	cvids_911.push({vid:86548, thumb: 'http://i.ytimg.com/vi/8q5u8KAKj_M/0.jpg', title: '1vandaag over het nieuwe TV kijken, the making of', desc: 'Sonja en Wouter kwamen nav Plasterk zijn opmerkingen in het parool over het omroepbestel in tijden van internet even vragen hoe het nieuwe tv kijken eruit gaat zien, '});
	cvids_911.push({vid:85718, thumb: 'http://i.ytimg.com/vi/AL6EEk87UbE/0.jpg', title: 'Knocking Live Video Sharing iPhone App handig foto\'s sharen', desc: 'Video en Foto\'s sharen tussen 2 iphones. Gratis geloof ik'});
	cvids_911.push({vid:85717, thumb: 'http://i.ytimg.com/vi/HlQDdLfcPAo/0.jpg', title: 'Knocking iPhone App voorbeeld van de Photo sharing mogelijkheden tussen 2 iphones', desc: ''});
	cvids_911.push({vid:85638, thumb: 'http://i.ytimg.com/vi/6v21ZP6WVrw/0.jpg', title: 'DSBtheMovie interview met Jan Willem Alphenaar', desc: 'Gezien op NOSheadlines? Editie NL? Het eerste movie crowdsourcing project van nederland. Samen een film maken over de teloorgang van DSB bank. Jan willem praat over het project en de lessen die gewone bedrijven hieruit kunnen trekken om samen met klanten, ambassadeurs en leveranciers te leren'});
	cvids_911.push({vid:85473, thumb: 'http://i.ytimg.com/vi/N6KL30irQSw/0.jpg', title: 'Investeerder in Twitter, Jack Dorsey, currently chairman', desc: '2006 fue el a\u00f1o de Youtube. 2007, el de Facebook. \u00bfSer\u00e1 2008 el a\u00f1o de Twitter? La revista Time cree que s\u00ed y Jack Dorsey, el fundador de esta red social, est\u00e1 convencido de que el futuro de su juguete electr\u00f3nico pasa por la telefon\u00eda m\u00f3vil. Es su f\u00f3rmula magistral para popularizar este sistema concebido para enviar mensajes a todo cacharro que se precie. Su madre, confiesa este gur\u00fa on-line, es la usuaria que m\u00e1s interact\u00faa con \u00e9l. Algo que Dorsey aprecia, aunque eso suponga saber c\u00f3mo ...'});
	cvids_911.push({vid:85472, thumb: 'http://i.ytimg.com/vi/XA1a9db-tYs/0.jpg', title: 'The Top 100 Videos of 2009 in Less Than 3 Minutes', desc: 'Between pranks, sports, tech, video games, singing, dancing, and television\u2014 there was a lot to choose from. These are the top 100 videos that became famous on the web in 2009, all in less than three minutes. Video Brought to You via Gawker TV '});
	cvids_911.push({vid:85036, thumb: 'http://i.ytimg.com/vi/-mty0q5ojws/0.jpg', title: 'People getting scared, effing hilarious.', desc: 'Basicly, just people getting scared.'});
	cvids_911.push({vid:85034, thumb: 'http://i.ytimg.com/vi/hsjNMwJlv3A/0.jpg', title: 'Turtle Fail', desc: 'For more, visit failblog.org'});
	cvids_911.push({vid:85032, thumb: 'http://cdn-thumbs.viddler.com/thumbnail_2_31ee90bf.jpg', title: 'David After Dentist After REMIX', desc: 'Stay in your seat! http://www.tobyturner.com http://www.twitter.com/tobyturner http://www.youtube.com/tobuscus'});
	cvids_911.push({vid:85030, thumb: 'http://i.ytimg.com/vi/sx9PujLoqiI/0.jpg', title: 'A Puppy In Halo 3 (Machinima)', desc: 'HALO 3 : awwwwwwww............. by Raider-66'});
	cvids_911.push({vid:85029, thumb: 'http://i.ytimg.com/vi/2WNrx2jq184/0.jpg', title: 'Family Guy - Bird is the Word!', desc: 'Catch Family Guy on Sundays at 9/8c, only on FOX! For Full Episodes Visit: www.fox.com'});
	cvids_911.push({vid:84972, thumb: 'http://i.ytimg.com/vi/HEheh1BH34Q/0.jpg', title: 'Star Size Comparison HD', desc: 'There are several videos circulating showing a comparison of the largest stars. I like these kind of things, and I wanted to try one myself. Probably because I also watched \"Cosmos\" by Carl Sagan as a kid. Actually my first Youtube upload. Hope you like it... '});
	cvids_911.push({vid:84912, thumb: 'http://i.ytimg.com/vi/maV2InOTsOc/0.jpg', title: 'Bikram Yoga', desc: 'Short Video on Bikram Yoga'});
	cvids_911.push({vid:84318, thumb: 'http://i.ytimg.com/vi/uIMC9yIyT-s/0.jpg', title: 'CAREN System', desc: 'CAREN is a revolutionary tool that provides therapists the ability to tailor its use to meet a patients specific needs. As one of only three such systems in the US, and one of only four in the world, Walter Reeds CAREN is a groundbreaking physical therapy option for wounded warriors. '});
	cvids_911.push({vid:84316, thumb: 'http://i.ytimg.com/vi/taUYVzdnuJ8/0.jpg', title: 'Biomechanics Lab at WRAMC', desc: 'The biomechanics lab at Walter Reed Army Medical Center is helping patients optimize their recovery through the use of prosthetics by analyzing how they walk. '});
	cvids_911.push({vid:84134, thumb: 'http://a.images.blip.tv/Vincente-ZeemanCampagneMetGratisBoxerShorts230-995.jpg', title: 'Zeeman campagne met gratis boxer shorts', desc: 'Sjef kerkhofs is verantwoordelijk voor de social media bij het reclame buro wat de gratis boxershorts weggeeft. Gratis is trouwens nog een beetje overdreven, iedereen moet wel \&#8364;4 verzendkosten betalen maar goed.'});
	cvids_911.push({vid:83931, thumb: 'http://i.ytimg.com/vi/jEjUAnPc2VA/0.jpg', title: 'Pigeon: Impossible', desc: 'A rookie secret agent is faced with a problem seldom covered in basic training: what to do when a curious pigeon gets trapped inside your multi-million dollar, government-issued nuclear briefcase.'});
	cvids_911.push({vid:83930, thumb: 'http://i.ytimg.com/vi/h648hhBsx6M/0.jpg', title: 'Pigeon: Impossible Podcast #016 - Animating The Pigeon', desc: 'This week covers how to develop a \&quot;motion language\&quot; for a character that helps to create a consistent and unique personality.'});
	cvids_911.push({vid:83723, thumb: 'http://i.ytimg.com/vi/5Najr76U3YI/0.jpg', title: 'Elise leert lopen', desc: 'Elise leert lopen'});
	cvids_911.push({vid:83068, thumb: 'http://i.ytimg.com/vi/BudhFVnN2o0/0.jpg', title: '100 GREATEST HITS OF YOUTUBE IN 4 MINUTES', desc: 'How many do you recognise? The song is \'MAD\' by Hadouken \& is out now on iTunes - itunes.apple.com BUY THE EP + T-SHIRT BUNDLE: hadouken.sandbag.uk.com 100 virais da internet em 4 minutos/ 100 viral videos in 4 minutes 100 buzz en 3\'24 ... hadouken fat kid falls over jump lols incredible shoes tay zonday chocolate rain charlie bit my finger backflip meme 100 buzz en 3\'24 '});
	cvids_911.push({vid:82875, thumb: 'http://ak2.static.dailymotion.com/static/video/321/403/304123:jpeg_preview_large.jpg?20090610221450', title: '1996 Ford Aspire Ramp Jumping.', desc: 'The Aspire Saga: Final - The Aspire dies, and Boner \&amp; Skidmarc come close.  This was the last of the Aspire Saga\'s. This was done out west some where along a dirt county road. We drew quite a crowd, one of which who was nice enough to drive their back hoe out to build us some ramps. This day was fucking awesome.  The car was a 1995 Ford Aspire.  Length: 5.31mins Size: 19.5mb  www.boredom-induced.com productions. '});
	cvids_911.push({vid:82597, thumb: 'http://i.ytimg.com/vi/Q7ilp5z-e9A/0.jpg', title: 'New Pink Sony Rolly SEP-50BT Demonstration 2008 : DigInfo', desc: 'DigInfo - www.diginfo.tv The latest Sony Rolly, to be released in Japan on November 21, 2008, comes in white and pink, with an exclusive black model to be available only from the Sony Style site. It features an upgraded 2GB flash memory and can be controlled from a mobile phone or pc via Bluetooth. Using the latest Motion Editor software up to seven Rollys can be controlled simultaneously allowing for synchronized motions and movement. A firmware upgrade for original Rolly, enabling the same ...'});
	cvids_911.push({vid:82596, thumb: 'http://ak2.static.dailymotion.com/static/video/861/436/15634168:jpeg_preview_large.jpg?20090517092429', title: 'Eurovision Sweden 2009 (final) -  Malena Ernman - La Voix', desc: 'Malena Ernman - La Voix      Finale Eurovision 2009   class\u00e9e N\u00b021http://www.dailymotion.com/group/Eurovision-2009-MoscouCan you keep a secret     Can you keep a secret     I\'m in love with you     Can you make a promise     Can you make a promise     Stay forever true     Then I\'m forever yours     Je t\'aime, amour, quand j\'entends la voix     Je t\'aime, ami, c\'est jamais sans toi   Je vis ma vie pour toi, c\'est l\'universe pour moi     Je t\'aime, amour, quand j\'entends la voix     Tell me what you\'re feeling     Tell me what you\'re feeling     I just wanna know     Tell me what you\'re dreaming     Tell me what you\'re dreaming     Let your feelings show     Stay and don\'t let go     Je t\'aime, amour, quand j\'entends la voix     Je t\'aime, ami, c\'est jamais sans toi   Je vis ma vie pour toi, c\'est l\'universe pour moi     Je t\'aime, amour, quand j\'entends la voix     Je vis ma vie pour toi, c\'est l\'universe pour moi     Je t\'aime, amour, quand j\'entends la voix     J\'entends la voix     La voix     '});
	cvids_911.push({vid:81663, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F2.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D10e68c14fcc4c996%26offsetms%3D20000%26itag%3Dw160%26hl%3Dnl%26sigh%3DAB81xtDO0Ab6ohC_vLOc2O16Ugk', title: ' Commercial', desc: 'Heineken Commercial, I love you'});
	cvids_911.push({vid:81662, thumb: 'http://i.ytimg.com/vi/2jqZTJk30qg/0.jpg', title: 'Let A Stranger Drive You Home | Heineken Commercial', desc: 'Visit the new HeineknUSA YouTube channel to watch the behind the scenes video for this commercial: bit.ly Director: Stacy Wall, Music: Biz Markie \"Just a Friend\" Agency: Wieden+Kennedy.'});
	cvids_911.push({vid:81661, thumb: 'http://ak2.static.dailymotion.com/static/video/534/351/2153435:jpeg_preview_large.jpg?20080912173951', title: 'Reborn', desc: ''});
	cvids_911.push({vid:81660, thumb: 'http://i.ytimg.com/vi/S1ZZreXEqSY/0.jpg', title: 'NEW Heineken Commercial - verry funny', desc: 'It\'s a men\'s dream to have it at home...'});
	cvids_911.push({vid:81088, thumb: 'http://i.ytimg.com/vi/dk_Ar-pUtm4/0.jpg', title: 'Pastorale - Ramses Shaffy en  Liesbeth List', desc: 'Pastorale - Ramses Shaffy en Liesbeth List - 1969 - Ramses is de zon, Liesbeth de maan. Ramses Shaffy \& Liesbeth List Pastorale Mijn hemel blauw met gouden harp Mijn wolkentorens, ijskristallen Kometen, manen en planeten, aaah alles draait om mij En door de witte wolkenpoort tot diep onder de golven Boort mijn vuur, mijn liefde, zich in de aarde, En bij het water speelt een kind En alle schelpen die het vindt gaan blinken als ik lach Ik hou van je warmte op mijn gezicht Ik hou van de koperen ...'});
	cvids_911.push({vid:80182, thumb: 'http://i.ytimg.com/vi/Z19zFlPah-o/0.jpg', title: 'Inspired Bicycles - Danny MacAskill April 2009', desc: 'Filmed over the period of a few months in and around Edinburgh by Dave Sowerby, this video of Inspired Bicycles team rider Danny MacAskill (more info at www.dannymacaskill.com) features probably the best collection of street/street trials riding ever seen. There\'s some huge riding, but also some of the most technically difficult and imaginative lines you will ever see. Without a doubt, this video pushes the envelope of what is perceived as possible on a trials bike. Credit to Band of Horses ...'});
	cvids_911.push({vid:79755, thumb: 'http://i.ytimg.com/vi/bC6PnIJk18k/0.jpg', title: 'Amsterdam viert financi\u00eble historie', desc: 'Een financieel centrum in crisis gedenkt zijn roemrijke verleden. De tentoonstelling Kapitaal Amsterdam gaat open. '});
	cvids_911.push({vid:79754, thumb: 'http://i.ytimg.com/vi/TEJUwy_KiQQ/0.jpg', title: 'Rabbijn Soetendorp', desc: 'Gesprek met Rabbijn Soetendorp op TEDx Amsterdam. Productie: Vincent Everts en Jan-Willem de Lange voor BNR Nieuwsradio / Het Financieele Dagblad. '});
	cvids_911.push({vid:79643, thumb: 'http://i.ytimg.com/vi/lXdTqKDxvJE/0.jpg', title: 'Ed Whitacre On Fritz Henderson\'s Departure from GM', desc: 'GM Chairman Ed Whitacre\'s comments to the media announcing that CEO and President Fritz Henderson was leaving the automaker. Whitacre will assume Henderson\'s position as president and CEO pending a seach for Henderson\'s replacement.'});
	cvids_911.push({vid:76852, thumb: 'http://i.ytimg.com/vi/GpgfNBAmgro/0.jpg', title: 'Het nieuwe werken - de wereld van Sam', desc: 'De wereld van Sam laat de visie van Getronics en KPN zien op het nieuwe werken.'});
	cvids_911.push({vid:76851, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/894/894282_640.jpg', title: 'Het nieuwe Werken small', desc: ''});
	cvids_911.push({vid:76849, thumb: 'http://i.ytimg.com/vi/-oVXP7eygQI/0.jpg', title: 'HRpraktijk Dag 2009 - Het nieuwe werken', desc: 'De HRpraktijk Dag 2009 De HRpraktijk Dag op 14 mei 2009 stond geheel in het teken van Het Nieuwe Werken. Het Nieuwe Werken staat voor flexwerken, individuele zeggenschap en leidinggeven op afstand. Met als resultaat een tevreden werknemer, een hogere arbeidsproductiviteit, lagere huisvestingskosten en uw organisatie vormt een aantrekkelijke partij op de arbeidsmarkt. Het stuur loslaten dus en vertrouwen op medewerkers. Een aanlokkelijk concept. Maar waar begin je? Wat komt er allemaal bij ...'});
	cvids_911.push({vid:76848, thumb: 'http://a.images.blip.tv/DirkBarrez-InternationaleArbeidsverdelingWaarIsHetWerkVanPhilipsHas613-163.jpg', title: 'Internationale arbeidsverdeling. Waar is het werk van Philips Hasselt naartoe?', desc: '\nOude jobs gaan naar lageloonlanden, naar Oost-Europa of naar Azi\&#235;, nieuwe jobs voor ons komen eraan in nieuwe sectoren. Dat proces verloopt niet altijd makkelijk, maar meestal wordt bijna iedereen daar beter van, tenminste wanneer overal de welvaart stijgt. Maar is dat wel altijd het geval?Philips Hasselt is vele jaren lang een mondiaal kenniscentrum. Daar is o.a de cassette en cd recorder ontwikkeld, tot zelfs de dvd, nog altijd een topproduct. In december 2002 sluit Philips Hasselt de deuren, nochtans helemaal geen aftandse fabriek. Meer dan 1400 mensen werken er, waaronder heel veel hooggeschoolden. Toch gaat dit kenniscentrum dicht en verdwijnt11\'30\", 2005, een reportage van Dirk Barrez en Jessie Van Couwenberghe, met dank aan IIAV\n'});
	cvids_911.push({vid:75392, thumb: 'http://i.ytimg.com/vi/lVjPWXvpsyU/0.jpg', title: 'Stephan Fellinger (Blogo Media) op PICNIC07', desc: 'Stephan Fellinger, oprichter van webloguitgeverij Blogo Media, heeft het erg naar zijn zin op PICNIC07.'});
	cvids_911.push({vid:72937, thumb: 'http://i.ytimg.com/vi/lpet4TJi41A/0.jpg', title: 'If books came after games', desc: 'Perception of computerganing would have been different if these games were invented some 500 years ago. ... Computergaming Education \'Steve Johnson\' '});
	cvids_911.push({vid:72444, thumb: 'http://i.ytimg.com/vi/Hds3jvjZY-Y/0.jpg', title: 'Romancing Your Soul Absolutely Brilliant!', desc: 'hey every body u Should see this....... this is \'IT\' PLS Comment if u like this........i know u like ...... so pls pls comment on this Video ... Romancing Your Soul Absolutely Brilliant! '});
	cvids_911.push({vid:71932, thumb: 'http://i.ytimg.com/vi/Uh3P9R-Vn5A/0.jpg', title: 'India @75 and Beyond- What is the Big Idea? (Part 1)', desc: 'the countrys strength and provide space for development? What are the biggest challenges that India needs to surmount in order to sort out its internal contradictions? Moderator: Rajan Navani, Managing Director, Jetline Group Panel: \u2022 CKPrahalad, Professor of Corporate Strategy, University of Michigan Ross School of Business, USA \u2022 Bunker Roy, Founder, Barefoot College \u2022 Shashi Tharoor, Chairman, Afras Ventures and former Under-Secretary-General of the United Nations ... Ideas India @75 and ...'});
	cvids_911.push({vid:68686, thumb: 'http://i.ytimg.com/vi/nah6Ar76yCc/0.jpg', title: 'Het heelal in cijfers - Het universum en verwondering', desc: 'Het heelal in enkele cijfers om zo gevoelens van verwondering op te roepen. DOWNLOAD de POWERPOINT van dit filmpje: www.krisverburgh.com Of surf naar: www.krisverburgh.com ... heelal universum kosmos wetenschap wetenschappen spiritualiteit cijfers nummers getallen sterren ster sterrenstelsel sterrenstelsels melkweg melkwegen planeet planeten nevel nevels aarde zon zonnestelsel zonnestelsels verwondering ontzag '});
	cvids_911.push({vid:68664, thumb: 'http://i.ytimg.com/vi/xwqPYeTSYng/0.jpg', title: 'Redesigning the Stop sign', desc: 'www.blogotipos.com Excellent parody about the client/designer relationship, ... Design Parody funny '});
	cvids_911.push({vid:66444, thumb: 'http://i.ytimg.com/vi/Q1FPYJ95ZjM/0.jpg', title: 'YUGO 3.5i Turbo ZAGREB', desc: 'Yugo Zagreb Drift BMW 3,5l 6cil. Turbo Intercooler Vrapche Racing Team Ludara Ludnica Driver: Mr.M Cam \& Video: Pele Music : Paul van Dyk - Nothing but you (Cirrus mix)'});
	cvids_911.push({vid:66443, thumb: 'http://i.ytimg.com/vi/-_5WoBenz6Q/0.jpg', title: 'Welcome To Zagreb', desc: 'VOLOVCICA PRODUCTIONS REPRESENTS: Welcome to Zagreb, the capital city of the Republic of Croatia. Zagreb is an old Central European city. For centuries it has been a focal point of culture and science, and now of commerce and industry as well. It lies on the intersection of important routes...'});
	cvids_911.push({vid:65157, thumb: 'http://i.ytimg.com/vi/Uk75SSdiqc0/0.jpg', title: 'Wolfgang Gartner - Frenetica', desc: 'Electro House enjoy,'});
	cvids_911.push({vid:65156, thumb: 'http://i.ytimg.com/vi/0LEQpoQJvnQ/0.jpg', title: 'Alistair Newton, Gartner: Financial IT Must Innovate', desc: 'Financial services institutions must focus on IT innovation for radical change or hibernate to minimise cost and prepare for later action to survive the economic downturn, according to Alistair Newtwon at Gartner, Inc. Organisations that choose the middle ground risk wasting their IT budget on incremental modernisation for little gain. For more information, visit: www.gartner.com'});
	cvids_911.push({vid:65155, thumb: 'http://i.ytimg.com/vi/H9otm9rgkNY/0.jpg', title: 'Wolfgang Gartner - Wolfgang\'s 5th Symphony', desc: 'New Wolfgang Gartner. sounds pretty cool, cut cut ! Comment \'n Subscribe!'});
	cvids_911.push({vid:65154, thumb: 'http://i.ytimg.com/vi/bBB9lRnx1v0/0.jpg', title: 'Richard Hunter, Gartner, discusses his new book \"Real Business of IT\"', desc: 'Richard Hunter, Gartner, discusses his new book \"The Real Business of IT\", published by Harvard Business Press. For more information, visit the book microsite: www.gartner.com'});
	cvids_911.push({vid:65153, thumb: 'http://i.ytimg.com/vi/5E69WhGwOA0/0.jpg', title: 'Gartner CIO Agenda 2009', desc: 'January 14, 2009 \u2014 As enterprises face a challenging economic environment, IT spending budgets will be essentially flat with a planned increase of 0.16 percent in 2009, according to results from the 2009 CIO survey by Gartner Executive Programs (EXP). The worldwide survey of 1527 CIOs was conducted by Gartner EXP from September 15 to December 15 2008 and represents CIO budget plans reported at that time. Flat IT budgets were found across enterprises in North America and Europe, with slight ...'});
	cvids_911.push({vid:61970, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/281/922/28192254_640.jpg', title: 'MVVO Award 2009: DAP Beilen', desc: 'Winnaar van de MVVO Award 2009: Dierenartsenpraktijk Beilen. DAP Beilen heeft ervoor gezorgd dat het Keuringsregulatief rondom uiers van droogstaande koeien werd aangepast naar aanleiding van de introductie een droogzetter met een wachttijd van o dagen. Een mooi voorbeeld van Maatschappelijk Verantwoord Veterinair Ondernemen.'});
	cvids_911.push({vid:61969, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/281/929/28192980_640.jpg', title: 'MVVO Award 2009 nominatie: Road to Bhutan', desc: 'Dierenartsen Rein Blanken en Peter Henk Gijsman hebben een reis gemaakt van 16.000 over land naar Bhutan. Met in totaal 8 teams van 2 personen bezochten zij diverse ontwikkelingsprojecten om de gelden die zij hadden verzameld af te leveren. Het project waar Rein en Peter Henk zich voor hebben ingezet is het Brooke Animal Hospital in Lahore, Pakistan. Brooke verzorgt gratis hulp aan werkpaarden en ezels en ontwikkelt voorlichting en educatie programma\u2019s rondom dierverzorging.'});
	cvids_911.push({vid:61968, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/281/966/28196623_640.jpg', title: 'MVVO Award 2009 nominatie: Intervet Nederland', desc: 'Hondsdolheid is nog altijd een groot probleem in Afrika onder mens en dier. Jaarlijks sterven meer dan 25.000 mensen aan deze dodelijke virusinfectie. De hond is het belangrijkste reservoir van de infectie. Rondom het Serengeti National Park in Tanzania heeft het onderzoeksproject Afya Serengeti aangetoond dat grootschalige vaccinatie van honden tegen hondsdolheid de ziekte kan voorkomen. Intervet/Schering-Plough Animal Health heeft zich samen met haar klanten verbnden aan dit project: voor ieder verkocht hondsdolheid vaccin wordt \u00e9\u00e9n dosis aan het Afya Serengeti project.'});
	cvids_911.push({vid:61215, thumb: 'http://i.ytimg.com/vi/GMeN_08Uskg/0.jpg', title: 'Halloween: Sugar Skull from Purple Crush by Sylvia Ji', desc: 'Hey guys! Time for another Halloween video. This was specifically requested by sourcurdz. Thanks for the request! Hope you guys enjoy! Products: Rimmel White Eyeliner NYX Milk Pencil Mehron Tropical Palette Mehron Basic Palette Prestige e/s Blanc Kat Von D e/s Lucifer Coastal Scents Gel Liner Black Rhinestones Lash Adhesive Raving Beauty e/s Pure Gold Raving Beauty e/s Electric Purple Raving Beauty e/s Electric Raspberry Raving Beauty Mineral Eyeshadows can be found here: www ...'});
	cvids_911.push({vid:61214, thumb: 'http://images.vimeo.com/17/74/87/177487706/177487706_200.jpg', title: 'Halloween 2008', desc: 'Lux leads her entourage in search of the elusive sugar fix.'});
	cvids_911.push({vid:60062, thumb: 'http://i.ytimg.com/vi/XL-x19ne-Cc/0.jpg', title: 'Crazy Psychological Evaluation - Lab Rats - BBC comedy', desc: 'Alex is being subjected to a psychological analysis test, as are all the college\'s employees. How will he deal with this dose of beauracratic hell? Comedy from the BBC - Lab Rats.'});
	cvids_911.push({vid:59682, thumb: 'http://a.images.blip.tv/Crunchiestv-AftershowInterviewSeeqpod229-80-483.jpg', title: 'After-show Interview Seeqpod', desc: '\n\n'});
	cvids_911.push({vid:59681, thumb: 'http://a.images.blip.tv/Crunchiestv-AftershowInterviewFramr834-581-268.jpg', title: 'After-show Interview Framr', desc: '\n\n'});
	cvids_911.push({vid:59680, thumb: 'http://a.images.blip.tv/Crunchiestv-AftershowInterviewSethSternbergMeebo350-509-180.jpg', title: 'After-show Interview Framr', desc: '\n\n'});
	cvids_911.push({vid:59678, thumb: 'http://a.images.blip.tv/Crunchiestv-PreshowIngridBellMogulus702-576-875.jpg', title: 'Pre-show Ingrid Bell, Mogulus', desc: '\n\n'});
	cvids_911.push({vid:59677, thumb: 'http://a.images.blip.tv/Crunchiestv-PreshowIngridBellMogulus702-576-875.jpg', title: 'Pre-show Ingrid Bell, Mogulus', desc: '\n\n'});
	cvids_911.push({vid:59676, thumb: 'http://a.images.blip.tv/Crunchiestv-PreshowIngridBellMogulus702-576-875.jpg', title: 'Awards Ceremony, part 3', desc: '\n\nJessica Morris from Our Stage gives out the Award for best user-generated content site. Unfortunately, due to a connection issue, the video stops right before she annouces the winner: Digg.  \n\n'});
	cvids_911.push({vid:59675, thumb: 'http://a.images.blip.tv/Crunchiestv-AftershowInterviewSethSternbergMeebo350-509-180.jpg', title: 'After-show Interview Seth Sternberg, Meebo', desc: '\n\nChris Albrecht interviews the CEO and Founder of Meebo, Seth Sterberg. Meebo won the Crunchies\' \"Best consumer startup\" Award.\n\n'});
	cvids_911.push({vid:59674, thumb: 'http://a.images.blip.tv/Crunchiestv-AftershowInterviewSethSternbergMeebo350-509-180.jpg', title: 'After-show Interview Seth Sternberg, Meebo', desc: '\n\nChris Albrecht interviews the CEO and Founder of Meebo, Seth Sterberg. Meebo won the Crunchies\' \"Best consumer startup\" Award.\n\n'});
	cvids_911.push({vid:59673, thumb: 'http://a.images.blip.tv/Crunchiestv-PreshowChrisAlbrechtGigaOM227-262-485.jpg', title: 'Pre-show Chris Albrecht, GigaOM', desc: '\n\n'});
	cvids_911.push({vid:59672, thumb: 'http://a.images.blip.tv/Crunchiestv-InterviewSridharVembuAndRajuVegesnaZoho387-664-703.jpg', title: 'Interview Sridhar Vembu and Raju Vegesna, Zoho', desc: '\n\nChris Albrecht from GigaOM interviews Zoho Founder Sridhar Vembu and tech evangelist Raju Vegesna.Zoho is an online office suite that enable everyone to work online with applications made for small and medium businesses. Nominated for \"Best enterprise start-up\". \n\n'});
	cvids_911.push({vid:59671, thumb: 'http://a.images.blip.tv/Crunchiestv-InterviewRafeNeedlemanCNET774-857-136.jpg', title: 'Interview Rafe Needleman CNET', desc: '\n\nIngrid Bell from Mogulus interviews Rafe Needleman. The director at CNET talks about webware.com, a website that reviews Web 2.0 applications for consumers and small business people.\n\n'});
	cvids_911.push({vid:59670, thumb: 'http://a.images.blip.tv/Crunchiestv-PreshowPart3414-923-738.jpg', title: 'Pre-show part3', desc: '\n\n'});
	cvids_911.push({vid:59669, thumb: 'http://a.images.blip.tv/Crunchiestv-PreshowPart3414-923-738.jpg', title: 'Pre-show part3', desc: '\n\n'});
	cvids_911.push({vid:59668, thumb: 'http://a.images.blip.tv/Crunchiestv-InterviewJeffreyWescottZivity128-227-599.jpg', title: 'Interview Jeffrey Wescott, Zivity', desc: '\n\n'});
	cvids_911.push({vid:59667, thumb: 'http://a.images.blip.tv/Crunchiestv-InterviewJeffreyWescottZivity128-227-599.jpg', title: 'Interview Jeffrey Wescott, Zivity', desc: '\n\n'});
	cvids_911.push({vid:59666, thumb: 'http://a.images.blip.tv/Crunchiestv-InterviewKevinRoseDigg842-730-474.jpg', title: 'Interview Kevin Rose, Digg', desc: '\n\nIngrid Bell from Mogulus and Chris Albrecht from GigaOM interview founder and chief architect of Digg, Kevin Rose. Digg was nominated for both \"Best overall\" and \"Best startup founder\" Awards.\n\n'});
	cvids_911.push({vid:59665, thumb: 'http://a.images.blip.tv/Crunchiestv-InterviewTedGriggsAndCrickWatersRibbit595-133-460.jpg', title: 'Interview Ted Griggs and Crick Waters, Ribbit', desc: '\n\nIngrid Bell from Mogulus and Chris Albrecht from GigaOM interview founders of Ribbit Ted Griggs and Crick Waters. Ribbit got two Crunchies nominations:\"Best enterprise startup\" and \"Best new startup of 2007\". \n\n'});
	cvids_911.push({vid:59664, thumb: 'http://a.images.blip.tv/Crunchiestv-PreshowPart2944-857-396.jpg', title: 'Pre-show part2', desc: '\n\n'});
	cvids_911.push({vid:59663, thumb: 'http://a.images.blip.tv/Crunchiestv-PreshowPart1841-591-655.jpg', title: 'Pre-show part1', desc: '\n\n'});
	cvids_911.push({vid:59662, thumb: 'http://a.images.blip.tv/Crunchiestv-CrunchiesPromoVideo149-447-526.jpg', title: 'Crunchies Promo Video', desc: '\n\nWelcome to the Crunchies Awards Ceremony! \n\n'});
	cvids_911.push({vid:59661, thumb: 'http://a.images.blip.tv/Crunchiestv-WelcomeToTheCrunchiesWithIngridBellAndChrisAbrecht656-877-935.jpg', title: 'Welcome to the Crunchies ', desc: '\n\n Ingrid Bell from Mogulus and Chris Abrecht from GigaOM launch the live stream from the Herbst Theater.\n\n'});
	cvids_911.push({vid:59660, thumb: 'http://a.images.blip.tv/Crunchiestv-PreshowIntroduction974-559-127.jpg', title: 'Pre-show introduction', desc: '\n\nIngrind Bell from Mogulus and Chris Albrecht from GigaOM discuss the Crunchies and nominees.\n\n'});
	cvids_911.push({vid:59659, thumb: 'http://a.images.blip.tv/Plesstv-KeibiKeepsRidSocialNetworksOfPorographicDrugRelatedMater178-677.jpg', title: 'Keibi Helps Rid Social Networks of Pornographic, Drug-Related Content', desc: '\n\nKeibi\'s media moderation platform helps social networks enforce their terms of service, CEO Paul Remer says. The platform analyzes content, like photos, against a database to determine if it is pornographic, drug-related, or otherwise innapropriate. Keibi scores the content and then lets human moderators decide whether or not to keep them on the site. VentureBeat covered the company when they first introduced its porn-spotting tools a year ago.  --Kelsey Blodget, Associate Producer \n\n'});
	cvids_911.push({vid:59658, thumb: 'http://a.images.blip.tv/Plesstv-VentureBeatsMattMarshallGearsUpForDEMO790-705.jpg', title: 'VentureBeat\'s Matt Marshall Gears up for DEMO', desc: '\nMatt Marshall, editor and CEO of VentureBeat, the authoritative technology and finance blog, is gearing up for his first year as co-producer of DEMO, the 20-year-old tech conference for start-ups.  He is co-producing the show with founder Chris Shipley, who leaves after the Fall event. DEMO will be held in San Diego, September 21-23. And this year, unlike last, it won\'t overlap with the TechCrunch 50 event.  He told me that the number of companies presenting this year will be expanded with a sort second tier of earlier on, less funded start-ups in a category he calls AlphaPitch. Matt, a former foreign correspondent for The Wall Street Journal and business reporter for the San Jose Mercury News started VentureBeat in late 2006. The site had nearly a half a million uniques in May, according to Compete.  We caught up last week at the Business Insider start-up conference/competition last week at NYU. Matt was a judge.  Andy Plesser, Executive Producer\n'});
	cvids_911.push({vid:59657, thumb: 'http://a.images.blip.tv/Plesstv-OnlineVideoRightsManagementStartupGetsFundsFromUberAnge222-727.jpg', title: 'Online Video Rights Management Start-up Gets Funds from Uber Angels Patricof and Conway....and Launches Global Videographer Network', desc: '\n\nImageSpan, a Sausalito-based start-up which provides rights management and payment systems for online video publishers, has received angel funding from top angel investors Alan Patricof and his new venture fund, Greycroft Partners, along with Ron Conway\u2019s Angel Investors. VentureBeat reported this today, adding that the amount of the angel round was not disclosed.For publishers large and small, the need for proper rights management and payment will be of increasing importance as real revenue starts to enter the equation. In addition to providing rights management, ImageSpan has launched a network of 7,000 videographers who are creating web video for companies and advertisers. You can see the interface for the video production platform right here. Sounds similar in ways to TurnHere, the Emeryville company that just landed .5 million in venture funding.Last month in New York, I caught up with Iain Scholnick, CEO of ImageScan at the AlwaysOn media conference.-- Andy PlesserPosted on Beet.TV on Tuesday, February 19, 2008http://www.beet.tv/2008/02/online-video-ri.html \n\n'});
	cvids_911.push({vid:59555, thumb: 'http://a.images.blip.tv/Vincente-persconferentieBumaStemra6OctNieuweDigitaleTarieven542-617.jpg', title: 'persconferentie BumaStemra 6 oct. nieuwe digitale tarieven', desc: 'Helaas is de eerste 3.42 minuten zonder geluid en het geheel is zonder video van de zaal. toelichting op de tarieven voor gebruik van muziek op internet. Er zitten 30 journalisten in de zaal en 3 mensen antwoorden vragen. Matthijs Bobeldijk, digtiale business development,'});
	cvids_911.push({vid:58400, thumb: 'http://i.ytimg.com/vi/B1nRR88rmfk/0.jpg', title: 'Interview with Tomi T. Ahonen, part five', desc: 'This is the fifth part of the interview that Mr. Dan Virtopeanu, General Manager of Voxline Communication, took from Mr. Tomi T. Ahonen, consultant, during their meeting in April 24th 2009 at the Forum Oxford conference in UK.'});
	cvids_911.push({vid:58399, thumb: 'http://i.ytimg.com/vi/M4L799zDxT0/0.jpg', title: 'Interview with Tomi T. Ahonen, part four', desc: 'This is the fourth part of the interview that Mr. Dan Virtopeanu, General Manager of Voxline Communication, took from Mr. Tomi T. Ahonen, consultant, during their meeting in April 24th 2009 at the Forum Oxford conference in UK.'});
	cvids_911.push({vid:58398, thumb: 'http://i.ytimg.com/vi/DnU-vJIR9vs/0.jpg', title: 'Interview with Tomi T. Ahonen, part three', desc: 'This is the third part of the interview that Mr. Dan Virtopeanu, General Manager of Voxline Communication, took from Mr. Tomi T. Ahonen, consultant, during their meeting in April 24th 2009 at the Forum Oxford conference in UK.'});
	cvids_911.push({vid:58397, thumb: 'http://i.ytimg.com/vi/ZQEF_qtcSos/0.jpg', title: 'Interview with Tomi T. Ahonen, part two', desc: 'This is the second part of the interview that Mr. Dan Virtopeanu, General Manager of Voxline Communication, took from Mr. Tomi T. Ahonen, consultant, during their meeting in April 24th 2009 at the Forum Oxford conference in UK.'});
	cvids_911.push({vid:58396, thumb: 'http://i.ytimg.com/vi/w_g4efqQ0iw/0.jpg', title: 'Interview with Tomi T. Ahonen, part one', desc: 'This is the first part of the interview that Mr. Dan Virtopeanu, General Manager of Voxline Communication, took from Mr. Tomi T. Ahonen, consultant, during their meeting in April 24th 2009 at the Forum Oxford conference in UK.'});
	cvids_911.push({vid:58395, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/103/208/10320865_640.jpg', title: 'Impressions from Forum Oxford 2009', desc: 'Forum Oxford is a discussion group open to anyone seriously interested in the future of mobile in society. It has over 2000 members worldwide. Three years ago, Peter Holland, Tomi Ahonen and Ajit Joakar decided to organise a one day informal gathering to debate what might happen next. This year around 60 of the most agile minds in mobile in the centre of Oxford at the Department of Continuing Education. It reminded me more of the \"unconferences\" taking place these days - where people come because they want to share ideas - rather than broadcast corporate spin. The standard of the presentations was superb - and there was true interaction from the audience. It\'s also a trusted environment, so that people are much more open to debate.\n\nAt the end of the conference I asked a few of the delegates why they came, especially when we\'re in the middle of a serious credit crunch. What they gave me was an unprompted series of testimonials as to why the formula works. The list includes Tomi Ahonen, Christine Maxwell, Peter Holland, Helen Keegan, Simon Cavill, Martin Sauter, Ed Candy, Agustin Cavlo and Ajit Jaokar.  \n\nThere were overseas guests from France, The Netherlands, Romania, Germany \& Norway - so this gathering is far from UK centric.'});
	cvids_911.push({vid:58393, thumb: 'http://cdn-thumbs.viddler.com/thumbnail_2_1792e02f.jpg', title: 'Mobile Monday Amsterdam - Tomi T Ahonen (24/09/2007)', desc: 'Presentation by Tomi T Ahonen, writer of the book (and blog) Communities Dominate brands, about Mobile Communities at Mobile Monday Amsterdam - 24 september 2007'});
	cvids_911.push({vid:58392, thumb: 'http://images.vimeo.com/20/57/48/205748071/205748071_200.jpg', title: 'MIR Show - Week 48 - Future of Mobile Walkabout 4', desc: 'It\'s the fourth (and, I think final) walkabout from Future of Mobile.  We\'ve still a few more interviews to bring you -- but today we deliver an array of staff from MIR favourite, Mobyko, along with mobile enthusiasts Claire from Mobile Monday Amsterdam and of course, Mr Mobile himself, Tomi Ahonen. \n\n'});
	cvids_911.push({vid:57445, thumb: 'http://i.ytimg.com/vi/wofjkTmVgt4/0.jpg', title: 'Who killed The Electric Car (Sub ITA) Parte1di9', desc: 'Documentario sulla macchina elettrica EV-1 e sulla sua misteriosa sparizione'});
	cvids_911.push({vid:57444, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F3.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D11e1bb8a36e79d13%26offsetms%3D145000%26itag%3Dw160%26hl%3Dnl%26sigh%3DhsnvhvIhxGXjxHoAaywWo2Kocjo', title: '- Fuel Economy', desc: 'A clip from the film...'});
	cvids_911.push({vid:57443, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F1.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D679fbc9f3824682d%26offsetms%3D55000%26itag%3Dw160%26hl%3Dnl%26sigh%3D-dkNqPe3SCuie93ycC6akXwB2gM', title: '? - \u00bfQui\u00e9n Mat\u00f3 al Coche El\u00e9ctrico? Subt ', desc: '\u00bfAlguna vez te preguntaste por qu\u00e9 la tecnolog\u00eda automotriz no ha evolucionado, pr\u00e1cticamente en nada, durante los \u00faltimos 100 a\u00f1os? Sony Pictures ...'});
	cvids_911.push({vid:57442, thumb: 'http://i.ytimg.com/vi/lojW5S401hQ/0.jpg', title: 'TreehuggerTV: Who Killed the Electric Car? Choco Hydrogen', desc: 'What does our oil dependence cost us as consumers? This week TreeHuggerTV gets the inside track on \"Who Killed the Electric Car?\" and finds out how clean, quiet, efficient electric cars were systematically pulled off the road and could have been useful during Hurricane Katrina. We also fuel your Umpa Lumpa fantasies with energy generated from chocolate waste, shed light on Fetzer Wines\' new solar array, and get our green groove on with Barbara Streisand.'});
	cvids_911.push({vid:57441, thumb: 'http://i.ytimg.com/vi/Pk81OUcmhYo/0.jpg', title: 'Who Killed The Electric Car Movie Review. KeepItGreen.tv', desc: 'SAVING THE ENVIRONMENT, ONE EPISODE AT A TIME! Excited after seeing Who Killed The Electric Car, Sarah and Shelley give us a mini-review and reaffirme their desire to own an electric car.'});
	cvids_911.push({vid:57440, thumb: 'http://i.ytimg.com/vi/39K36Rw7LYc/0.jpg', title: 'Who killed the electric car? (1of10)', desc: 'Who killed the electric car?'});
	cvids_911.push({vid:57439, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F2.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D7fc4b450cba277e2%26offsetms%3D915000%26itag%3Dw160%26hl%3Dnl%26sigh%3DZiIs9gw35u4iy8ceLD6LAkAqVIg', title: '? [VOST] | 2sur6', desc: 'Who Killed The Electric Car? (VOST) | \u00c9tats-Unis, 2006, 93 mn | \u00c9criture et r\u00e9alisation : Chris PAINE | Who Killed the Electric Car? is a 2006 ...'});
	cvids_911.push({vid:57437, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F1.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D546708d5765b4bb1%26offsetms%3D440000%26itag%3Dw160%26hl%3Dnl%26sigh%3DR1dGFKaX2MPlDvrbqcwOVsOiZpQ', title: '? [VOST] | 3sur6', desc: 'Who Killed The Electric Car? (VOST) | \u00c9tats-Unis, 2006, 93 mn | \u00c9criture et r\u00e9alisation : Chris PAINE | Who Killed the Electric Car? is a 2006 ...'});
	cvids_911.push({vid:57436, thumb: 'http://i.ytimg.com/vi/fXu9mw-Nn-M/0.jpg', title: 'Who Killed the Electric Car (2005 Trailer \"EV Confidential\"))', desc: 'This is the unofficial 2005 trailer that helped secure funding for the feature documentary. At this point in the film\'s evolution, the film was called \"EV Confidential\", a reference to LA Confidential film noir setup in Los Angeles. Flavors of this influence is evident in the clip used from Sunset Blvd. \"Joseph P. Gillis, we\'re here for the car...\" which mirrored car company demands for EV owners to return their electric cars. The film\'s final name became \"Who Killed the Electric Car ...'});
	cvids_911.push({vid:57435, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F2.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D069a890f67bf6b1a%26offsetms%3D90000%26itag%3Dw160%26hl%3Dnl%26sigh%3DEZrFFehGLqH8OptLMb15qmGniDA', title: 'POV\'s Borders | Environment - The Death of the  | PBS', desc: 'Watch the video interview with Chris Paine, director of \&quot;Who Killed the Electric Car?\&quot; to find out how he and other drivers tried to ...'});
	cvids_911.push({vid:57434, thumb: 'http://p-images.veoh.com/image.out?imageId=media-v4685943Mb3xBpK1178611489Med.jpg', title: 'CHRIS PAINE / WHO KILLED THE ELECTRIC CAR INTERVIEW', desc: 'Chris Paine, the director of Who Killed the Electric Car? sits down with Mark Gordon to talk about his film and the history behind it. Who Killed the Electric Car? is a documentary that explores and investigates the truth about the birth and death of the electric car, who killed it and why, and the [...]'});
	cvids_911.push({vid:57433, thumb: 'http://p-images.veoh.com/image.out?imageId=media-v6983862EqXc2g8z1208428149Med.jpg', title: 'Who Killed the Electric Car ? - Documentaire VOSTFR', desc: 'En 1997, General Motors lance l\'EV-1, un mod\u00e8le de voiture \u00e9lectrique rapide, silencieux et \u00e9minemment propre. L\'automobile parcourt ses premiers kilom\u00e8tres sur les routes de la Californie. Elle fait le bonheur d\'une poign\u00e9e de conducteurs, instantan\u00e9ment convertis. Six ans plus tard, GM d\u00e9cide de rappeler sa flotte d\'EV-1 au garage. Il appert que le constructeur a d\u00e9cid\u00e9 de mettre un terme \u00e0 son aventure \u00e9lectrique. Diverses raisons sont \u00e9voqu\u00e9es, qui ne satisfont personne: co\u00fbt trop \u00e9lev\u00e9, autonomie insuffisante, fiabilit\u00e9 discutable...'});
	cvids_911.push({vid:57432, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F3.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D88e44f045eb13c07%26offsetms%3D475000%26itag%3Dw160%26hl%3Dnl%26sigh%3DdKyzjDD6hj-CC0IlqA8ELMTAiuo', title: '? [VOST] | 5sur6', desc: 'Who Killed The Electric Car? (VOST) | \u00c9tats-Unis, 2006, 93 mn | \u00c9criture et r\u00e9alisation : Chris PAINE | Who Killed the Electric Car? is a 2006 ...'});
	cvids_911.push({vid:57431, thumb: 'http://i.ytimg.com/vi/mqwb8DhOBqI/0.jpg', title: '\"Who Killed the Electric Car?\"', desc: 'Who Killed the Electric Car? is a 2006 documentary film that explores the creation, limited commercialization, and subsequent destruction of the battery electric vehicle in the United States, specifically the General Motors EV1 of the 1990s. The film explores the roles of automobile manufacturers, the oil industry, the US government, the Californian government, batteries, hydrogen vehicles, and consumers in limiting the development and adoption of this technology. It was released on DVD to ...'});
	cvids_911.push({vid:57430, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F1.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D66735ea163f8a6c5%26offsetms%3D5000%26itag%3Dw160%26hl%3Dnl%26sigh%3DkCh85FwQyoL90zyv4klYJSpHBG0', title: '', desc: 'Rabbi Brian delivers one of the best eulogies for a car, ever. (1 minute)'});
	cvids_911.push({vid:57429, thumb: 'http://ll-images.veoh.com/image.out?imageId=media-v18260632cHManA8n1240140122Med.jpg', title: 'Who killed the electric car [VOST]', desc: 'http://www.whokilledtheelectriccar.com/'});
	cvids_911.push({vid:57428, thumb: 'http://i.ytimg.com/vi/8XR_vYSjwXI/0.jpg', title: 'Who killed the electric car', desc: 'WARNING SOME ADULT LANGUAGE The contents are not mine and have only been edited by myself. I feel great passion when I watch this movie so I clipped out the most moving parts and put them together in a kind of a trailer. I wanted to get this out to the average joe/jane but my subscribers can watch it as well if they so desire ;] LINK TO SITE www.whokilledtheelectriccar.com'});
	cvids_911.push({vid:57427, thumb: 'http://a.images.blip.tv/TreeHugger-THTVWhoKilledTheElectricCarChocoHydrogenSolarWine100-282.jpg', title: 'THTV: Who Killed the Electric Car?, Choco Hydrogen, \& Solar Wine', desc: '\n\nWhat does our oil dependence cost us as consumers? This week TreeHuggerTV gets the inside track on \"Who Killed the Electric Car?\" and finds out how clean, quiet, efficient electric cars were systematically pulled off the road and could have been useful during Hurricane Katrina. We also fuel your Umpa Lumpa fantasies with energy generated from chocolate waste, shed light on Fetzer Wines\' new solar array, and get our green groove on with Barbara Streisand.\n\n'});
	cvids_911.push({vid:57426, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F1.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D8dbdff0beedc7f11%26offsetms%3D750000%26itag%3Dw160%26hl%3Dnl%26sigh%3D_K53sbZbDK0ua3I3jkyyB15QdKQ', title: 'Who_Killed_The_Electric_Car.avi', desc: 'Who killed The Electric Car?'});
	cvids_911.push({vid:57425, thumb: 'http://a.images.blip.tv/TreeHugger-THTVWhoKilledTheElectricCarChocoHydrogenSolarWine896-557.jpg', title: 'THTV: Who Killed the Electric Car?, Choco Hydrogen, \& Solar Wine', desc: '\n\nWhat does our oil dependence cost us as consumers? This week TreeHuggerTV gets the inside track on \"Who Killed the Electric Car?\" and finds out how clean, quiet, efficient electric cars were systematically pulled off the road and could have been useful during Hurricane Katrina. We also fuel your Umpa Lumpa fantasies with energy generated from chocolate waste, shed light on Fetzer Wines\' new solar array, and get our green groove on with Barbara Streisand.\n\n'});
	cvids_911.push({vid:57424, thumb: 'http://i.ytimg.com/vi/xcdhAFC7SjI/0.jpg', title: '\"Who Killed the Electric Car?\" TRAILER edited in part by me.', desc: 'This is the version of the \"Who Killed the Electric Car?\" trailer that I worked on. It was tweaked and changed by another, final editor, and that slightly different version is the one you could see in theaters preceding Al Gore\'s \"An Inconvenient Truth\". Who Killed really is a great movie/documentary, and I am not just saying that because I worked on it as an assistant/associate editor for 6 months, and poured my heart into it. It is an important film whose message is vital to a green ...'});
	cvids_911.push({vid:57423, thumb: 'http://ll-images.veoh.com/image.out?imageId=media-v186404634CkEWAY21245387665Med.jpg', title: 'Who Killed The Electric Car? [2006]', desc: 'Who Killed the Electric Car? is a 2006 documentary film that explores the creation, limited commercialization, and subsequent destruction of the battery electric vehicle in the United States, specifically the General Motors EV1 of the 1990s. The film explores the roles of automobile manufacturers, the oil industry, the US government, the Californian government, batteries, hydrogen vehicles, and consumers in limiting the development and adoption of this technology. The film details the California Air Resources Board\'s reversal of the mandate after suits from automobile manufacturers, the oil industry, and the George W. Bush administration. It points out that Bush\'s chief influences, Dick Cheney, Condoleezza Rice, and Andrew Card, are all former executives and board members of oil and auto companies. They were eliminated from the GM Line in 1999.'});
	cvids_911.push({vid:57421, thumb: 'http://a.images.blip.tv/Luisfilipe1966-WhoKillTheElectricCar227-670.jpg', title: 'Who kill the electric car', desc: '\n\n'});
	cvids_911.push({vid:57420, thumb: 'http://i.ytimg.com/vi/N7Mpe7XfODk/0.jpg', title: 'Who Killed The Electric Car?', desc: 'Who Killed The Electric Car?'});
	cvids_911.push({vid:57419, thumb: 'http://p-images.veoh.com/image.out?imageId=media-v6491982z4NQzrfr1206285065Med.jpg', title: 'Who Killed The Electric Car?', desc: 'Visit http://topdocumentaryfilms.com/who-killed-the-electric-car/ Trailer for the documentary film \"Who Killed The Electric Car?\"'});
	cvids_911.push({vid:57418, thumb: 'http://i.ytimg.com/vi/nsJAlrYjGz8/0.jpg', title: 'Who Killed The Electric Car?', desc: 'Documentary about GM killing of the electric car. It has been here since \'96 but they killed it off. If you believe in conspiracy theories: here\'s one for ya.'});
	cvids_911.push({vid:57081, thumb: 'http://i.ytimg.com/vi/-MD-CfUxc6I/0.jpg', title: '22-09-09 building up picnic TVents', desc: '... picnic09 picnic Tvents Tvents09 amsterdam media GNR8 InHolland westergas '});
	cvids_911.push({vid:56318, thumb: 'http://i.ytimg.com/vi/qo1eSb2AUFQ/0.jpg', title: '#eday arnoud meijink van 9292 we staan op #1 met onze iph...', desc: 'Share your adventures realtime with your friends mobypicture.com'});
	cvids_911.push({vid:56317, thumb: 'http://i.ytimg.com/vi/BIolOgniD68/0.jpg', title: '@hansroling on the segway', desc: 'Verstuurd vanaf mijn 3G iphone Share your adventures realtime with your friends mobypicture.com'});
	cvids_911.push({vid:54832, thumb: 'http://www.yubby.com/util/fetchurl?http%3A%2F%2F1.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3Dbba0246e72f2bc1d%26offsetms%3D5735000%26itag%3Dw160%26hl%3Dnl%26sigh%3Dn1Z5JrvhTzX0623lalKdzOJt1dY', title: 'Documentaire: Psychiatrie, Een ', desc: 'Door middel van zeldzame historische en hedendaagse beelden en interviews met meer dan 160 artsen, advocaten, hoogleraren, overlevenden en ...'});
	cvids_911.push({vid:54229, thumb: 'http://i.ytimg.com/vi/i3HMiUMY-jc/1.jpg', title: 'Joris en Monique krijgen een baby', desc: 'Koefnoen - Joris en Monique krijgen een baby'});
	cvids_911.push({vid:44777, thumb: 'http://cdn-thumbs.viddler.com/thumbnail_2_49660a1f.jpg', title: 'Generating an SSH key in Git Bash', desc: 'This is how you generate an SSH key in Git Bash, and copy it to paste into GitHub.'});
	cvids_911.push({vid:44776, thumb: 'http://a.images.blip.tv/Oscommerce-WorkingWithTheDevelopmentRepositoryOnGithub924-827.jpg', title: 'Working with the Development Repository on Github', desc: '\n\nTogether with the osCommerce Online Merchant v3.0 Alpha 5 release, we have migrated the development repository from a centralized Subversion server to decentralized Git repositories. This replaces the need to access a central server, and requiring the permissions to do so, to allowing you to instantly clone or fork the official development repository to your local development machine. This gives you the complete history of the repository on your local machine where you can start committing your changes to and to share them with others. The official Git development repository is hosted on Github where developers can network with each other and share the changes they have made. This screencast presentation shows how easy it is to fork the official repository to make your changes to, and how these changes can be merged back to the official repository.\n\n'});
	cvids_911.push({vid:44610, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/118/356/11835665_200.jpg', title: 'Liz Strauss\'s Elevator Pitch at SOBcon', desc: 'Not to be outdone, Liz Strauss gives her elevator pitch, \"I\'m Liz Strauss. I run a conference called SOBcon, and if you don\'t come, you\'re all losers.\"  Perfect, thanks Liz!'});
	cvids_911.push({vid:43350, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/167/552/16755212_200.jpg', title: 'StartHub launch at MPJC2009', desc: 'Screencapture, including neat desktop effects :). Live stream provided by Hogeschool Utrecht. Moderator = initiator StartHub: Erwin Blom. More info http://www.starthub.nl. Music by Tom Laan.'});
	cvids_911.push({vid:43349, thumb: 'http://i.ytimg.com/vi/KOna-Qx2L4s/1.jpg', title: '#mpjc2009 Plaskerk heeft 2 uur in de file gezet. merkt op...', desc: 'Share your adventures realtime with your friends mobypicture.com'});
	cvids_911.push({vid:43348, thumb: 'http://i.ytimg.com/vi/QidMQTaR3x8/1.jpg', title: '#mpjc2009 plaskerk over de analyse van de media commissie...', desc: 'Share your adventures realtime with your friends mobypicture.com'});
	cvids_911.push({vid:43346, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/167/677/16767726_200.jpg', title: 'Plasterk praat over het rapport van commissie Brinkman', desc: '#mpjc2009'});
	cvids_911.push({vid:41085, thumb: 'http://i.ytimg.com/vi/Ebho0eHW3NI/1.jpg', title: 'Vincent Everts plugs NTI  on segway', desc: 'Vincent Everts is hier actief met zijn segway in MediaPlaza en houdt een enthousiast verhaal over het NTI opleidingsinstituut.'});
	cvids_911.push({vid:41084, thumb: 'http://a.images.blip.tv/Vincente-RickCalvertFounderBlogworldAboutBlogworldexpoLasVegas200109-758-361.jpg', title: 'Rick Calvert, founder Blogworld about Blogworldexpo Las Vegas 2009 ', desc: '\nRick Calvert is a professional organizer of tradeshows (after being a musician) and become a political blogger in 2005. he wanted to meet all his friends and the famous bloggers (the Robert Scoble\'s of this world). There was no event so his organized it in 2007 himself. 1500 people and a lot of companies and speakers showed up. this year 4000 bloggers will show up in Las Vegas on october 15-17 and will debate blogging, podcasting, vlogging \& ofcourse Twitter, Twitter \& Twitter. With 300 speakers and a joined reach of 100.000.000 people this seems to be the center of the USA blogesphere. How international is it?\n'});
	cvids_911.push({vid:31927, thumb: 'http://a.images.blip.tv/Vincente-DeSlingboxBijDeKassaGadgetColumnMetVincentEverts465-42.jpg', title: 'Twitter bij de Kassa Gadget Column met Vincent Everts', desc: '\nDeze week geeft Vincent Everts een korte demo van Twitter.\n'});
	cvids_911.push({vid:31926, thumb: 'http://a.images.blip.tv/Vincente-DeEbooksBijDeKassaGadgetColumnMetVincentEverts978-869.jpg', title: 'De E-books bij de Kassa Gadget Column met Vincent Everts', desc: '\nLezen was niet meer de grote hobby van gadgetgoeroe Vincent Everts. Dat gedoe met zo\u2019n boek in je koffer op vakantie en je moet elke keer een bladzijde omslaan. Zo vermoeiend! Vincent Everts vond het maar niks! Maar nu het mogelijk is om digitaal een boek te lezen met een E-book, is hij weer verslaafd aan lezen. En het grote voordeel van zo\u2019n digitaal boek is dat het honderden titels kan bevatten. Geen gezeul, je hebt een hele boekenkast bij je in een E-book van zo\u2019n 300 gram.Ook steeds meer Nederlandse boeken zijn te koop in E-bookvorm. De openbare bibliotheek in Amsterdam heeft zelfs een hele collectie digitale boeken die je kunt downloaden. Je mag het gedownloade boek 3 weken lezen en daarna verdwijnt het boek vanzelf van jouw E-book. Vincent Everts ziet dat er steeds meer Nederlandse boeken en tijdschriften digitaal verschijnen. Inmiddels zijn er zeven Nederlandse titels te krijgen. Vincent Everts testte de volgende e-books:Kindle 2 (359 dollar)Sony E-book (300 euro)Bebook (330 euro)\n'});
	cvids_911.push({vid:31925, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/100/242/10024214_200.jpg', title: 'Mariah op de schommel bij Peter', desc: 'Heerlijk in noordwijk op de schommel. Gefilmt door Peter Olsthoor. papa van Lauren'});
	cvids_911.push({vid:31924, thumb: 'http://a.images.blip.tv/Vincente-MobileWidgetDeveloperDagInWillemDeZwijger2Mei749-0.jpg', title: 'Mobile widget developer dag in Willem de Zwijger 2 mei', desc: '\nEr is een nieuwe standaard afgekondigd door de W3 over Mobile widgets die als eerste in de opera browser kunnen draaien. Het wat, waarom en hoe wordt zaterdag in de mobile widget development dev kamp uit de doeken gedaan door nationale (oprichter momo uk) en nationale sprekers (onze Yme Bosma van Hyves) waarna iedereen zelf gaat hacken. Je aanmelden bij http://www.mobilewidgetcamp.nl\n'});
	cvids_911.push({vid:28246, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/881/360/8813602_200.jpg', title: 'andrew keen #tnw (video)', desc: ''});
	cvids_911.push({vid:28196, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/881/392/8813923_200.jpg', title: 'Dutchcowboys TNW 2009 Dag 1', desc: ''});
	cvids_911.push({vid:28195, thumb: 'http://a.images.blip.tv/Vincente-RemcoBronDuringTheYubbyPitchTNWTheNextWeb968-560-177.jpg', title: 'Remco bron during the Yubby pitch @ #TNW the next web', desc: '\n\n@remco bron dressed up in a big DIK pak during the next web @tnw pitches from Yubby. He kept a flipcamera in his hand. Take a look @ the 5 minute from his perspective\n\n'});
	cvids_911.push({vid:28194, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/866/126/8661268_200.jpg', title: 'Interview met Boris van The Next Web', desc: 'Interview met Boris van The Next Web'});
	cvids_911.push({vid:27189, thumb: 'http://www.dik.nl/img/bron/bron_ted.png', title: 'Barry Schwartz on our loss of wisdom', desc: 'TED Talks Barry Schwartz makes a passionate call for \"practical wisdom\" as an   antidote to a society gone mad with bureaucracy. He argues powerfully that ...'});
	cvids_911.push({vid:27187, thumb: 'http://a.images.blip.tv/Chipmaga-NissanSkylineGTR140-185.jpg', title: 'Nissan Skyline GT-R', desc: '\n\nDescription of the new Nissan Skyline\n\n'});
	cvids_911.push({vid:27175, thumb: 'http://i.ytimg.com/vi/g63Xzv2rZ3o/1.jpg', title: 'CES Petcom Ipevo', desc: 'IPevo? '});
	cvids_911.push({vid:25519, thumb: 'http://40.media.vimeo.com/d1/5/31/42/12/thumbnail-31421284.jpg', title: 'PeterDansen, Dancestreet', desc: ''});
	cvids_911.push({vid:24886, thumb: 'http://a.images.blip.tv/Leelefever-TwitterInPlainEnglish872-192-286.jpg', title: 'Twitter in Plain English', desc: '\n\n'});
	cvids_911.push({vid:22574, thumb: 'http://i.ytimg.com/vi/Yy4MHWWWIv8/1.jpg', title: 'Impressie Holland Flowers Festival 2009', desc: 'Impressie van het Holland Flowers Festival 2009. \'s Werelds grootste overdekte bloembollen tentoonstelling met een lifestylebeurs en agri-businessbeurs. '});
	cvids_911.push({vid:22573, thumb: 'http://i.ytimg.com/vi/_SpVhZxNMuU/1.jpg', title: 'kleurenfeest van bloeiende krokussen in lentezon en wind', desc: ''});
	cvids_911.push({vid:22572, thumb: 'http://i.ytimg.com/vi/0M-ETOdRL5g/1.jpg', title: 'Hortus Bulborum Tulipshow', desc: 'Tulips and other bulbs in Limmen (Netherlands). Check out their website http://www.hortus-bulborum.nl/ also in English. Tulpen en andere bolbloemen in Limmen (Noord Holland). '});
	cvids_911.push({vid:20775, thumb: 'http://s1.mcstatic.com/thumb/1414768/7243252/4/catalog_item5/0/1/oceans_fury_unleashed.jpg', title: 'Oceans Fury Unleashed', desc: '\n\n\nOne of the most recognizable lighthouse photographs in the world. When first seeing the famous and historical photograph, most people assume that the lighthouse keeper must have been killed. In fact, the keepers had been living in fear of death during the 1989 storm and at one point had taken refuge in the lantern room of the tower. Waves the night before had smashed through the lower windows of the tower, causing the structure to flood, washing away everything in its path including the television, table, chairs, coffee maker and even the refrigerator. The keepers in fact were waiting to be rescued by helicopter.\nAssuming the rescue chopper had arrived, one of the keepers opened the lower door of the structure and looked up at the helicopter but realized that it was not the rescue chopper.  He also realized that a giant wave was about to engulf the tower. He immediately turned about and pulled the door closed behind him. Had he not done so at that second, he surely would have been killed.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRanked 3.57 / 5 | 24497 views | 6 comments\n\n\nClick here to watch the video\nSubmitted By: nascarwrecks\nTags:\nCreepyFaroHistoricalHurricaneKeeperLighthousesMarineMothersNatureOceansPicturesScarySeasStormsStormyWindyDaysNight\nCategories: Science \& Tech \n\n'});
	cvids_911.push({vid:20122, thumb: 'http://i.ytimg.com/vi/-Mkw1xZ4iCw/1.jpg', title: 'Schinnen Vernieuwingsgroep Burgerparticipatie', desc: 'Promotievideo van Vernieuwingsgroep Schinnen. '});
	cvids_911.push({vid:20121, thumb: 'http://i.ytimg.com/vi/34KWjjqlcLo/1.jpg', title: 'Wij Bouwen Een Wijk', desc: 'Help mee een wijk voor de toekomst te ontwerpen en maak kans op een straat vernoemd naar jou in deze nieuwe wijk in Smallingerland. '});
	cvids_911.push({vid:20120, thumb: 'http://i.ytimg.com/vi/gUrBmz-lQrA/1.jpg', title: 'Overijssel Overmorgen', desc: 'wethouder Johan Coes van de gemeente Hellendoorn '});
	cvids_911.push({vid:20119, thumb: 'http://i.ytimg.com/vi/9VOCAGSR3WM/1.jpg', title: 'Binnenstaddebat Hengelo 1', desc: 'Arcon: procesbegeleider grootschalig binnenstaddebat Hengelo '});
	cvids_911.push({vid:20118, thumb: 'http://images.vimeo.com/21/14/41/211441825/211441825_200.jpg', title: 'Over games en molshopen; een wijk krijgt vorm', desc: 'Het experiment van de gemeente Smallingerland om met burgerparticipatie een nieuwe wijk te realiseren, levert plannen op die varieren van een lokale variant op het spel Kolonisten van Catan tot molshopen als inspiratie voor passend wonen in een natuurlijke omgeving. In twee maanden tijd kwamen een kleine honderd idee\u00ebn binnen op gebieden als inrichting ( \'een wijk met woningen die met de zon meedraaien), naamgeving (\'we noemen de wijk De Graverij naar het beroep van de originele bewoners\'),  energie (\'kunnen we stro niet gebruiken om te isoleren?\'), verkeer (\'we hebben buurtauto\'s nodig\') en onderwijs (\'we moeten zoeken naar een community based systeem). '});
	cvids_911.push({vid:13481, thumb: 'http://blip.tv/skin/blipnew/placeholder_user.gif', title: 'CES 2009 Internet televisie breekt door bij iedereen met Yahoo Widgits', desc: '\n\n'});
	cvids_911.push({vid:10643, thumb: 'http://images.vimeo.com/16/53/16/165316624/165316624_200.jpg', title: 'Geld verdienen met communities doe je zo!', desc: 'Op welke manieren kunnen communities geld opleveren? Alle facetten komen aan bod in interviews met o.a. Startpagina, Viva, Hyves, Sanoma, Iens, Pocketinfo, Marketingfacts, Vangstenregistratie en PSV. \n\nVerwacht de komende maanden het Handboek Communities en wie de presentatie (Hoe) Communities Werken / Social Media In De Praktijk wil \'boeken\', neemt contact op met www.thenextspeaker.com\n\nEn als e een social media project van concept tot realisatie wil, www.thecrowds.nl is je adres!'});
	cvids_911.push({vid:9614, thumb: 'http://i.ytimg.com/vi/P0Qi1D8MYWo/1.jpg', title: 'Vincent Everts over internet', desc: 'Vincent Everts, internet-specialist-e-vangelist spreekt op het congres van HSMAI Nederland over onder meer MSN, bloggen, Marketingfacts, web-log.nl en RSS op bloglines.com'});
	cvids_911.push({vid:9613, thumb: 'http://20.media.vimeo.com/d1/5/31/01/09/thumbnail-31010942.jpg', title: 'Vincent Everts over PCzapper', desc: ''});
	cvids_911.push({vid:9612, thumb: 'http://images.vimeo.com/70/17/92/70179265/70179265_200x150.jpg', title: 'Dochterdag 2008 - de video geheimen van Vincent Evers', desc: ''});
	cvids_911.push({vid:9611, thumb: 'http://a.images.blip.tv/Vincente-Flipvideo949-697-133.jpg', title: 'Flipvideo', desc: '\n\n'});
	cvids_911.push({vid:8924, thumb: 'http://bc1.vimeo.com/vimeo/thumbs/147379742_200.jpg', title: '02 Nature Time Lapse', desc: 'In second place a nature time lapse video. It is a video dome by Nagano, Gunma and Saitama from Japan using a Nikon D3 Fujifilm S5pro. They have a great use of color and show several beautiful clips of nature. The music really ties this together as well.'});
	cvids_911.push({vid:8923, thumb: 'http://i.ytimg.com/vi/zqxWDmfltWI/1.jpg', title: 'Banken schuldig aan de huidige financi\u00eble crisis', desc: 'Prof. dr Arie van der Zwan vertelt over de oorzaken van de kreditietcrisis. Lex Hoogduin, directeur van Iris (RABOBANK ) zegt dat het allemaal wel mee valt..\nArie van der Zwan ziet een gebrek aan toezicht en een ziekelijke hebzucht (bonussen) bij de banken als hoofdoorzaak. Analist Kees de Kort is het erg vaak met Arie eens...\nLex, een narcistische, blauw/oranje gekleurde \"Rabo hoogleraar\" probeert de schuld bij de banken weg te schuiven.'});
	cvids_911.push({vid:8922, thumb: 'http://i.ytimg.com/vi/ylfFPdCxrys/1.jpg', title: 'Centerparcs reclame: regeringsleiders', desc: 'De eerste reclame in de State Of Happiness campagne. De toenmalige regeringsleiders van Belgi\u00eb, Nederland, Duitsland, Engeland en Frankrijk erkennen Center Parcs als een nieuwe staat.\nBezoek zeker eens www.centerparcsforum.nl'});
	cvids_911.push({vid:8921, thumb: 'http://i.ytimg.com/vi/ynL2BgbYOaI/1.jpg', title: 'Erwin Blom bij HSMAI over passie en WWW.IENS.NL', desc: 'Erwin Blom praat over nieuwe media, wishdom of the crowds en hoe www.iens.nl daarmee werkt.'});
	cvids_911.push({vid:8920, thumb: 'http://i.ytimg.com/vi/ujR9SaQRMDI/1.jpg', title: 'Voetbal humor', desc: 'Voetbal humor'});
	cvids_911.push({vid:8919, thumb: 'http://i.ytimg.com/vi/lJnrFAiDeeM/1.jpg', title: 'SME-Omroep.NL Live in Concert with Trey Songz', desc: 'SME-Omroep.NL Live with Trey Songz'});
	cvids_911.push({vid:8918, thumb: 'http://images.vimeo.com/15/81/34/158134770/158134770_200.jpg', title: '\'Fly Away\' Part 2: Killer Whales and Bears', desc: 'Part 2: \r\n(15 minutes thanks to Vimeo Plus!)\r\nThis time we flew from Vancouver and above Campbell River for a landing next to an impressive group of 100 killerwhales (orca\'s). They had a seperate group with the kids. I filmed the inside flightshots with the VX2000 and the TRV20 on the wings and bottum.\r\n On 12:00\r\n\'the Making off\' I show the construction underneath  the Beaver wing of the small DV camera upside down to get less turbulance. Also placed the camera facing backwards and forwards right at the mid bottum!\r\nThe Century wide angle was perfect again and the raindrops just slide of the convex shaped lens to the sides! '});
	cvids_911.push({vid:8917, thumb: 'http://3.gvt0.com/ThumbnailServer2?app=vss\&contentid=48c3db14811eadd7\&offsetms=15000\&itag=w160\&hl=nl\&sigh=_uEFp9D2-JMMW0kcgJAalTTuGxs', title: 'LIFT Conference || Holm Friebe and Philipp Albers (2008)', desc: 'How to be a socialistic-capitalist firm and turn your company into a \"hedonistic company\": the seven rules of working together professionally and ...'});
html+='<div id="thumb_911" style="width:407px;overflow:hidden;height:336px;background-color:#FFFFFF;position:relative;float:left;">';
html+=vidthumbhtml_911(curvid_911);
html+='</div>';
	html +='<div style="height:26px;width:126px;position:absolute;right:5px;">';
		//html +='<img onclick="showmatrix_911(0);" style="position:absolute;left:66px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconmatrix24.png" title="popup an overview with all videos"/>';
		html +='<img id="pgprev_911" onclick="gotopageoffset_911(-1);" style="position:absolute;left:0px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconprev24.png" onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" title="scroll back"/>';
		//html +='<img onclick="playstop_911();" style="position:absolute;left:5px;top:20px;cursor:pointer;margin:0;padding:0;" src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconstop24.png" title="stop"/>';
		//html +='<img onclick="playstart_911();" style="position:absolute;left:5px;top:30px;cursor:pointer;margin:0;padding:0;" src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconplay24.png" title="play"/>';
		html +='<img id="pgnext_911" onclick="gotopageoffset_911(1);" style="position:absolute;left:66px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/iconnext24.png" onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);"  title="scroll forward"/>';
		html +='<div style="position:relative;top:54px; width:124px; margin:0px 0px 0px 0px;height:280px;overflow:hidden;border:1px solid #ddd;background-color:#fff" id="mxsoutline_911">';
			html+='<div id="mxs_911"  style="position:absolute;top:0px;background-color:#ffffff;"></div>';
			html+='<div id="mxs2_911" style="position:absolute;top:0px;background-color:#ffffff;"></div>';	// videolist placeholder
		html +='</div>';
	html +='</div>';
	html+='<div style="height:26px;width:100px;position:absolute;bottom:8px;left:0px;">';
	html+='<a target=_blank href="http://www.yubby.com/"><img style="position:absolute;left:0px;top:3px;height:25px;z-index:5;cursor:pointer;margin:0;padding:0;" border=0 src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/project/yubby/logo.png"></a>';
			//html +='<a target=_blank href="http://www.yubby.com/channel/player/610/first"><div style="position:absolute;left:70px;top:9px;color:#444;font-size:11px;line-height:10px;cursor:pointer;width:185px;height:20px;overflow:hidden;" >powered by yubby.com</div></a>';
					html +='<img onclick="toggleembed_911();" src="http://www.yubby.com/img/icon_share30.png" style="cursor:pointer;position:absolute;left:384px;top:0px;" title="share or embed" alt="share or embed">';
				html +='<a style="text-decoration:none" target=_blank href="http://www.yubby.com/channel/player/610/first"><div style="position:absolute;left:70px;top:3px;color:#444;font-size:11px;line-height:10px;cursor:pointer;width:185px;height:22px;overflow:hidden;" ><span style="color:#888;">You are watching channel</span><br/>vincente\'s favorieten</div></a>';
		html+='</div>';
	
	html+='</div></div>';	// margin and innerflash
	html+='<iframe src="http://www.yubby.com/util/ustat" width="0" height="0" border="no" frameborder="0"  style="border:0; visibility: hidden;"></iframe>';
	wgElm_911.innerHTML=html;
	wgElm_911.style.display = 'block';

	gotopage_911(matrix_curpg);	// 1
		
}

function playnext_911() {
	if (curvid_911 < cvids_911.length -1 ) {
		curvid_911++;
		if (cpvideo_911)
			playstart_911();	// we are playing video
		else {
			var thumbdiv=document.getElementById('thumb_911');
			thumbdiv.innerHTML=vidthumbhtml_911(curvid_911);
		}
	}
}
function playprev_911() {
	if (curvid_911 >0 ) {
		curvid_911--;
		if (cpvideo_911)
			playstart_911();	// we are playing video
		else {
			var thumbdiv=document.getElementById('thumb_911');
			thumbdiv.innerHTML=vidthumbhtml_911(curvid_911);
		}
	}
}

// play video in video window
function playstart_911(vnr) {
	closepopup_911();	// close popup (if open)
	if (vnr==null)
		vnr=curvid_911;
	else
		curvid_911=vnr;	// set the current
	var thumbdiv=document.getElementById('thumb_911');
	thumbdiv.innerHTML='<div></div>';
	thumbdiv.style.background='#FFF url(http://incdn.s3.amazonaws.com/yubbyp_v1/img/spinner32.gif) no-repeat 173.5px 138px';
	thumbdiv.innerHTML='<iframe name="playerframe" class="playerframe" src="http://www.yubby.com/widget/playvideo/'+cvids_911[vnr].vid+'/407/336/L/W" width="407" height="336" frameborder="0" scrolling="no" allowtransparency="true"></iframe>';
	cpvideo_911=true;
}

// show large thumb video still
function playstop_911(vnr) {
	if (vnr==null)
		vnr=curvid_911;
	else
		curvid_911=vnr;	// set the current
	cpvideo_911=false;
	var thumbdiv=document.getElementById('thumb_911');
	thumbdiv.innerHTML=vidthumbhtml_911(vnr);
}

// big thumbnail / player window
function vidthumbhtml_911(vnr) {
	var html='';
	//th: 407 x 336  it: 407 x 274 t= -16 nrdesclines=2 
html+='<div style="width:407px;height:274px; overflow:hidden; position:absolute;left:0px;top:0px;">';
html+='<img src="'+cvids_911[vnr].thumb+'" style="width:407px;height:305.25px;top:-16px;left:0px;position:relative;">';
html+='</div>';
html+='<div style="width:397px;height:62px;position:absolute;left:0px;bottom:0px;background-color:#BBB;padding:5px;"><div style="overflow:hidden;height:52px;"><div style="white-space:nowrap; margin: 2px 3px; font-size:16px;color:#555555;">'+htmlspecialchars(cvids_911[vnr].title)+'</div><div style="margin: 2px 5px; font-size:13px;line-height:13px;color:#ffffff;overflow:hidden;height:27px;"  title="'+htmlspecialchars(cvids_911[vnr].desc)+'">'+htmlspecialchars(cvids_911[vnr].desc)+'</div><div style="padding: 3px 5px; letter-spacing:1px; background-color: #BBB; color: #333;font-size: 10px; position: absolute; right: 0px; top: -14px; ">'+(vnr+1)+'/'+(cvids_911.length)+'</div></div></div>';
html+='<div style="position: absolute; width:100px;height:100px;top:118px;left:154px;z-index:200;cursor:pointer;cursor:hand;background:url(http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/videoplay100.png) no-repeat;" onClick="playstart_911();"></div>';
	return html;
}

function visspb(vnr,show) {
	el = document.getElementById('spbid'+vnr);
	if (el) {
		el.style.display = show ? 'block':'none';  
	} 
	if (show && !cpvideo_911)
		playstop_911(vnr);
}

// thumbs rechts
function vidthumbhtmlSmall_911(vnr) {
	var html='';
	html='';
				html+='<div style="margin: 0px; float: left; position: relative; width: 124px; height: 92px;">';
				html+='<div style="width:104px;max-height:58px;background:#f6f6f6;margin:13px auto 0px auto;overflow:hidden;position:relative;">';
				html+='<div style="width:104px;height:58px;background:#cccccc;border:0px solid #dedede;overflow:hidden;position:relative;"  onmouseover="visspb('+vnr+',true);" onmouseout="visspb('+vnr+',false);" >';
						html+='<img style="position:absolute;width:104px;height:78px;top:-10px;left:0;cursor: pointer;" onclick="playstart_911('+vnr+')" title="'+htmlspecialchars(cvids_911[vnr].desc)+'" src="'+cvids_911[vnr].thumb+'" />';
						html+='<div id="spbid'+vnr+'" style="display:none; position: absolute; width:20px;height:20px;top:20px;left:40px;z-index:200;cursor:pointer;cursor:hand;background:url(http://incdn.s3.amazonaws.com/yubbyp_v1/img/widget/chart2/videoplay20.png) no-repeat;" onclick="playstart_911('+vnr+')"></div>';
					html+='</div>';
				html+='</div>';
				html+='<div style="position: absolute; bottom: 0px; left: 10px;padding:0 0 4px 0;width:104px;height:15px;z-index:200;color:#555;font-size:11px;overflow:hidden;white-space: nowrap;cursor: pointer;" >'+htmlspecialchars(cvids_911[vnr].title)+'</div>';
			html+='</div>';
		return html;
}

// cp 1..npages
function paginationhtml_911(cp,npages) {
	if (npages<=1)
		return '';	// empty if no pagination..
	var html='';
	html+='<div class="pages">';
	if (cp>1) {
		// we CAN prev!
		html+= '<span class="pageblock" onclick="gotopage_911('+(cp-1)+');">&#171; Previous</span>';
	}
	else {
		html+= '<span class="pageblock_disabled">&#171; Previous</span>';
	}
	// Available pages - Link
	var lpage = 1;
	var cpageSur = 2;
	var dotted = false;
	for (var lpage=1;lpage<=npages;lpage++) {
		// 1-2...8-9-[10]-11-12....58-59 
		if ( lpage<=2 || (lpage>=cp-4 && lpage<=cp+4) || lpage>=npages-1) {
			dotted = false;	// we need to dot afterwards
			if (lpage == cp )
				html+='<span class="pageblock_curpage"><b>'+lpage+'</b></span>';
			else
				html+='<span class="pageblock" onclick="gotopage_911('+lpage+');">'+lpage+'</span>';
		}
		else {
			// no printing.. buttt maybe we need to dot
			if ( !dotted ) {
				html+='<span class="pageblock_dots">&nbsp;...&nbsp;</span>';
				dotted = true;
			}
		}
	}
		
	// Next page - Link
	if ( cp<npages )
		html+='<span class="pageblock" onclick="gotopage_911('+(cp+1)+');">Next &#187;</span>';
	else
		html+='<span class="pageblock_disabled">Next &#187;</span>';
	html+='</div>';
	return html;
}

function vidplayurl_911(vnr) {
	if (vnr==null)
		vnr=curvid_911;
	return 'http://www.yubby.com/channel/player/610/'+cvids_911[vnr].vid;
}

// find absolute top loc of object
function vp_offsetTop(obj) {
    curtop = 0;
    if (obj.offsetParent) {
    curtop = obj.offsetTop
    while (obj = obj.offsetParent) {
      curtop += obj.offsetTop
    }
  }
  return curtop;
}

function vp_offsetLeft(obj) {
  curtop = 0;
  if (obj.offsetParent) {
    curtop = obj.offsetLeft;
    while (obj = obj.offsetParent) {
      curtop += obj.offsetLeft;
    }
  }
  return curtop;
}


function closepopup_911() {
  el = document.getElementById('ipopup_911');
  if (el) {
    el.parentNode.removeChild(el);
  } 
}

//
// getPageScroll()
// Returns array with x,y page scroll values.
// Core code from - quirksmode.org
//
function getPageScroll(){

	var yScroll;

	if (self.pageYOffset) {
		yScroll = self.pageYOffset;
	} else if (document.documentElement && document.documentElement.scrollTop){	 // Explorer 6 Strict
		yScroll = document.documentElement.scrollTop;
	} else if (document.body) {// all other Explorers
		yScroll = document.body.scrollTop;
	}

	arrayPageScroll = new Array('',yScroll) 
	return arrayPageScroll;
}



//
// getPageSize()
// Returns array with page width, height and window width, height
// Core code from - quirksmode.org
// Edit for Firefox by pHaez
//
function getPageSize(){
	
	var xScroll, yScroll;
	
	if (window.innerHeight && window.scrollMaxY) {	
		xScroll = document.body.scrollWidth;
		yScroll = window.innerHeight + window.scrollMaxY;
	} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
		xScroll = document.body.scrollWidth;
		yScroll = document.body.scrollHeight;
	} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
		xScroll = document.body.offsetWidth;
		yScroll = document.body.offsetHeight;
	}
	
	var windowWidth, windowHeight;
	if (self.innerHeight) {	// all except Explorer
		windowWidth = self.innerWidth;
		windowHeight = self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
		windowWidth = document.documentElement.clientWidth;
		windowHeight = document.documentElement.clientHeight;
	} else if (document.body) { // other Explorers
		windowWidth = document.body.clientWidth;
		windowHeight = document.body.clientHeight;
	}	
	
	// for small pages with total height less then height of the viewport
	if(yScroll < windowHeight){
		pageHeight = windowHeight;
	} else { 
		pageHeight = yScroll;
	}

	// for small pages with total width less then width of the viewport
	if(xScroll < windowWidth){	
		pageWidth = windowWidth;
	} else {
		pageWidth = xScroll;
	}


	arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight) 
	return arrayPageSize;
}

//------------------------------------ button handlers --------------------------------------
function stButImg(oBut) {
	if (oBut.id == 'pgnext_911') { 
		if (matrix_curpg>=matrix_npages)
			oBut.src = img2_d.src;
		else
			oBut.src= butnext_mousein ? img2_ov.src : img2_ou.src;
	}
	if (oBut.id == 'pgprev_911') { 
		if (matrix_curpg<=1)
			oBut.src = img1_d.src;
		else
			oBut.src= butprev_mousein ? img1_ov.src : img1_ou.src;
	}
}

function oMouEv(oBut,mouseIn) {
	
	if (oBut.id == 'pgnext_911') 
		butnext_mousein=mouseIn;
	if (oBut.id == 'pgprev_911') 
		butprev_mousein=mouseIn;
	stButImg(oBut);
}

//----------------------------------------- pagination -------------------------------------

function initpage_911() {
	matrix_npages= Math.ceil(cvids_911.length / matrix_itemspp);
}

function gotopage_911(pg) {
		
	if (!matrix_npages)
		initpage_911();
	if (pg<1)
		pg=1;
	if (pg>matrix_npages)
		pg=matrix_npages;
		
	oldpg=matrix_curpg;
	matrix_curpg=pg;
	var mxs=document.getElementById('mxs_911');
	var mxs2=document.getElementById('mxs2_911');
	//if (!mxs)	
	//	alert('mxs_911 niet gevonden');
	var html='';
	for (var i=(matrix_curpg-1)*matrix_itemspp,cv=0;i<cvids_911.length && cv<matrix_itemspp;i++) {
		html+=  vidthumbhtmlSmall_911(i);
		cv++;
	}
	//html+=  '<div style="clear:both;"></div>';
	//if (matrix_npages>1) {
	//	html+=  '<div style="margin:10px 0px">'+paginationhtml_911(matrix_curpg, matrix_npages)+'</div>';
	//}
	if (oldpg<pg) {
		// stop old motions if busy
		if (tween1)	
			tween1.stop(); 
		if (tween2)
			tween2.stop();
		// tween UP
		(tweenflip?mxs2:mxs).innerHTML=html;	// put that in the NEW (to be shifted in) mxs
		// and start the tweens...
		// todo
		tween1 = new Tween((tweenflip?mxs2:mxs).style,'top',Tween.strongEaseOut,278,0      ,1,'px');
		tween1.start();
		tween2 = new Tween((tweenflip?mxs:mxs2).style,'top',Tween.strongEaseOut,0  ,-278 ,1,'px');
		tween2.start();
		tweenflip=!tweenflip;
		//mxs.innerHTML=html;
	}
	else if (oldpg>pg) {
		// tween down
		if (tween1)	
			tween1.stop(); 
		if (tween2)
			tween2.stop();
		(tweenflip?mxs2:mxs).innerHTML=html;	// put that in the NEW (to be shifted in) mxs
		// and start the tweens...
		// todo
		tween1 = new Tween((tweenflip?mxs2:mxs).style,'top',Tween.strongEaseOut,-278,0   ,1,'px');
		tween1.start();
		tween2 = new Tween((tweenflip?mxs:mxs2).style,'top',Tween.strongEaseOut,0   ,278   ,1,'px');
		tween2.start();
		tweenflip=!tweenflip;
	}
	else {
		(tweenflip?mxs:mxs2).innerHTML=html;
	}
	
	
	
	// disable/enable next/prev buttons
	el = document.getElementById('pgnext_911');
	if (el) 
		stButImg(el); // update nextbutton state

	el = document.getElementById('pgprev_911');
	if (el) 
		stButImg(el); // update prevbutton state
}

function gotopageoffset_911(offset) {	// 1 or -1
	if (matrix_npages==0)
		initpage_911();
	if (matrix_curpg+offset<0 || matrix_curpg+offset>matrix_npages) {
		gotopage_911(matrix_curpg);
		return 0;
	}
	gotopage_911(matrix_curpg+offset);
	return 1;
}

function showmatrix_911() {
	// close old one
	closepopup_911();

	matrix_npages= Math.ceil(cvids_911.length / 16);
	
	// open new
	var popup_div = document.createElement('div');
	var title='matrix';
	popup_div.id = "ipopup_911";
	popup_div.style.position = 'absolute';
	popup_div.style.border = 'none';
	var base_width=172*4+25;

	var base_height=100*4+30+10+4;
	if (matrix_npages>1) 
		base_height+=30;
	popup_div.style.width = base_width+'px';
	popup_div.style.height = base_height+'px';
	popup_div.style.fontFamily='Trebuchet MS,Lucida Sans Unicode,Lucida Grande,Lucida Sans,Tahoma,Geneva,Arial,helvetica,sans-serif';
	popup_div.style.zIndex = '10000';

	// CENTER SCREEN
	var arrayPageSize = getPageSize();
	var arrayPageScroll = getPageScroll();
	var popup_top = arrayPageScroll[1] + ((arrayPageSize[3] -base_height) / 2);
	var popup_left = arrayPageScroll[0] +((arrayPageSize[0] - base_width) / 2);
	if (popup_top<0)
		popup_top=0;
	if (popup_left<0)
		popup_left=0;
	popup_div.style.position = 'absolute';
	popup_div.style.top = popup_top + 'px';
	popup_div.style.left = popup_left + 'px';


	
	var vid_html='';
	vid_html+='<div style="padding:0px;position:relative;border:2px #CCC solid;background-color:white;width:'+(base_width-4)+'px;height:'+(base_height-4)+'px;">';
	vid_html+='<br style="display:none;"/><style type="text/css">	\
		.pages {padding:2px 0 2px 8px; margin:0; clear:both;font-size:12px;} \
			.pages span.pageblock {border: 1px solid #888; color:#000; height: 12px; padding: 3px 6px;margin: 0px 4px 0px 0px;cursor: pointer;cursor:hand;}\
			.pages span.pageblock:hover {color:#D10101;text-decoration:underline;}	\
			.pages span.pageblock_disabled {border: 1px solid #888; color: #aaa; height: 12px; padding: 3px 6px;margin: 0px 4px 0px 0px;}\
			.pages span.pageblock_dots {border: 0px solid #888; color: #000; height: 12px; padding: 3px 6px;margin: 0px 4px 0px 0px;}\
			.pages span.pageblock_curpage {border: 1px solid #888; color: #aaa; height: 12px; padding: 3px 6px;margin: 0px 4px 0px 0px;}\
		</style>';
	vid_html+=	'<div onclick="closepopup_911();" style="position:absolute;top:7px;right:8px;cursor:pointer;cursor:hand;background:url(http://www.yubby.com/img/icon_bw_close22.png) no-repeat;width:24px;height:24px;z-index:10000;"></div>';
	vid_html+=	'<div style="position:absolute;top:8px;left:15px;color:#888;font-size:15px;overflow:hidden;width:'+(base_width-50)+'px;">vincente\'s favorieten</div>';
	vid_html+=	'<div style="margin:30px 10px 10px 10px;" id="mxs_911">';
	// for (var i=0,cv=0;i<cvids_911.length && cv<16;i++) { 
	// 		vid_html+=  vidthumbhtmlSmall_911(i);
	// 		cv++;
	// 	}
	// 	vid_html+=  '<div style="clear:both;"></div>';
	// 
	// 	if (matrix_npages>1) {
	// 		vid_html+=  '<div style="margin:10px 0px">'+paginationhtml_911(matrix_curpg, matrix_npages)+'</div>';
	// 	}
	vid_html+=	'</div>';
	vid_html+=  '<div style="clear:both;"></div>';
	vid_html+='</div>';
					
	popup_div.innerHTML=vid_html;
	document.body.appendChild(popup_div);
	gotopage_911(matrix_curpg);
}


function closeembed_911() {
  el = document.getElementById('iembed_911');
  if (el) {
    el.parentNode.removeChild(el);
  } 
}
function toggleembed_911() {
	el = document.getElementById('iembed_911');
	if (el) 
		closeembed_911();
	else
		showembed_911();
}

function showembed_911() {
	// close old one
	closeembed_911();
	// open new
	var popup_div = document.createElement('div');
	var title='embed';
	popup_div.id = "iembed_911";
	popup_div.style.position = 'absolute';
	popup_div.style.border = 'none';
	var base_width=520;

	var base_height=90;
	popup_div.style.width = base_width+'px';
	popup_div.style.height = base_height+'px';
	popup_div.style.fontFamily='Trebuchet MS,Lucida Sans Unicode,Lucida Grande,Lucida Sans,Tahoma,Geneva,Arial,helvetica,sans-serif';
	popup_div.style.zIndex = '10000';
	popup_div.style.position = 'absolute';
	popup_div.style.bottom = '38px';
	popup_div.style.left = '10px';


	
	var vid_html='';
	vid_html+='<div style="width:510px; height:'+(base_height-10).toString()+'px; border:3px solid #BBB;padding:5px; background-color:#fff;color:#000;">';
	vid_html+='<div onclick="closeembed_911();" style="position:absolute;top:7px;right:0px;cursor:pointer;cursor:hand;background:url(http://www.yubby.com/img/icon_bw_close22.png) no-repeat;width:24px;height:24px;z-index:10000;"></div>';
	vid_html+='<div style="font-face:Arial, Helvetica;font-size:10px; margin:10px 0 0 0;">';
	vid_html+='<div style="padding-bottom:3px;"><div style="float:left;width:40px;">URL:</div><input type="text" onclick="this.focus();this.select();" style="border: 0pt none ; background-color: #ccc; width: 440px; font-size: 9px; height: 15px;" value="http://www.yubby.com/channel/player/610/first"></div>';
	vid_html+='<div style=""><div style="float:left;width:40px;">Embed:</div><textarea rows=2 cols=100 onclick="this.focus();this.select();" style="border: 0pt none ; background-color: #ccc; width: 440px; font-size: 9px; height: 40px;">&lt;div id=&quot;viidoo_solo_92&quot;&gt&lt;/div&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.yubby.com/widget/solojs/610/92/width:550/height:375/skin:clean&quot;&gt;&lt;/script&gt;</textarea></div>';	
	vid_html+='</div>';

	vid_html+='</div>';	
	popup_div.innerHTML=vid_html;
	
	em = document.getElementById('widget_flash_911');
	if (em) {
    	em.appendChild(popup_div);
	} 
}


// utf8 to string conversions
var escapable = /[\\\"\x00-\x1f\x7f-\uffff]/g,
    meta = {    // table of character substitutions
        '\b': '\\b',
        '\t': '\\t',
        '\n': '\\n',
        '\f': '\\f',
        '\r': '\\r',
        '"' : '\\"',
        '\\': '\\\\'
    };

function utf8quote(string) {
	// If the string contains no control characters, no quote characters, and no
	// backslash characters, then we can safely slap some quotes around it.
	// Otherwise we must also replace the offending characters with safe escape
	// sequences.

    escapable.lastIndex = 0;
    return escapable.test(string) ?
        '"' + string.replace(escapable, function (a) {
            var c = meta[a];
            return typeof c === 'string' ? c :
                '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4);
        }) + '"' :
        '"' + string + '"';
}




