//solo.js for channel 2588 / widget 92 / WxH: 425x369 / skin: clean / vid: 50245 / autoplay: N / matrix: Y 
// 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
// 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://beta.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();
var isIE = /MSIE ((5\.5)|[6])/.test(navigator.userAgent) && navigator.platform == "Win32";

var cvids_92= new Array();	// channelvideo's
var curvid_92=0;			// first video
var cpvideo_92=false;		// false=thumb, true=video

// in IE, you need to declare these before the vp_createwg is called, otherwise they do not exist in the onclick context
var matrix_curpg=1;
var matrix_npages=1;


var butnext_mousein=false;
var butprev_mousein=false;
var butplay_mousein=false;
var butstop_mousein=false;
var butmatrix_mousein=false;

var imgNext_ov = new Image;
var imgNext_ou = new Image;
var imgNext_d  = new Image;
imgNext_ov.src="http://beta.yubby.com//img/widget/solo/iconnext24ov.png";
imgNext_ou.src="http://beta.yubby.com//img/widget/solo/iconnext24.png";
imgNext_d.src ="http://beta.yubby.com//img/widget/solo/iconnext24d.png";

var imgPrev_ov = new Image;
var imgPrev_ou = new Image;
var imgPrev_d  = new Image;
imgPrev_ov.src="http://beta.yubby.com//img/widget/solo/iconprev24ov.png";
imgPrev_ou.src="http://beta.yubby.com//img/widget/solo/iconprev24.png";
imgPrev_d.src ="http://beta.yubby.com//img/widget/solo/iconprev24d.png";

var imgPlay_ov = new Image;
var imgPlay_ou = new Image;
var imgPlay_d  = new Image;
imgPlay_ov.src="http://beta.yubby.com//img/widget/solo/iconplay24ov.png";
imgPlay_ou.src="http://beta.yubby.com//img/widget/solo/iconplay24.png";
imgPlay_d.src ="http://beta.yubby.com//img/widget/solo/iconplay24d.png";

var imgStop_ov = new Image;
var imgStop_ou = new Image;
var imgStop_d  = new Image;
imgStop_ov.src="http://beta.yubby.com//img/widget/solo/iconstop24ov.png";
imgStop_ou.src="http://beta.yubby.com//img/widget/solo/iconstop24.png";
imgStop_d.src ="http://beta.yubby.com//img/widget/solo/iconstop24d.png";

var imgMatrix_ov = new Image;
var imgMatrix_ou = new Image;
var imgMatrix_d  = new Image;
imgMatrix_ov.src="http://beta.yubby.com//img/widget/solo/iconmatrix24ov.png";
imgMatrix_ou.src="http://beta.yubby.com//img/widget/solo/iconmatrix24.png";
imgMatrix_d.src ="http://beta.yubby.com//img/widget/solo/iconmatrix24d.png";

var wgElm_92 = document.getElementById('viidoo_solo_92');
if (wgElm_92) {
	vp_createwg();
}

pgstats.addcollect('chid','2588');
pgstats.addcollect('hit','embed');
pgstats.addcollect('widget','solo');
pgstats.xPageHit();

function vp_createwg() {
	// silly IE needs BR
	var html='<br style="display:none;"/><style type="text/css">	\
				.v69resetstyle	{ -moz-box-sizing: content-box !important; } \
				</style>';
	html+='<div id="widget_flash_92" class="widget_flash v69resetstyle" style="width: 425px;height:369px;overflow:hidden; border: 1px solid #DDDDDD;font-family:Trebuchet MS,Lucida Sans Unicode,Lucida Grande,Lucida Sans,Tahoma,Geneva,Arial,helvetica,sans-serif">';

	cvids_92.push({vid:90843, thumb: 'http://i.ytimg.com/vi/6KS-ypy88fY/0.jpg', title: 'Space Shuttle Destroyed - 2009 - CGI - 2D', desc: 'A video I made to show how the Shuttle may look if it was destroyed in space. Filmed from the ISS or maybe another Shuttle. All made with real photo\'s of the Shuttle then I used Photoshop to make it look damaged and in pieces. Then I put it in space using After Effects. Music by James Horner. '});
	cvids_92.push({vid:89721, thumb: 'http://i.ytimg.com/vi/SMW9BOELTFc/0.jpg', title: 'Meteor Impact Simulation', desc: 'Meteor Impact Simulation'});
	cvids_92.push({vid:87927, thumb: 'http://i.ytimg.com/vi/odBDAcOEKuI/0.jpg', title: 'FARMVILLE Commercial!! (Ad Parody)', desc: 'SUBSCRIBE!!! bit.ly ********** Click to TWEET!! tinyurl.com Follow me! bit.ly Your mom wants a Farmville Coffee Mug?! Click - bit.ly Or, here\'s their store: bit.ly Here\'s the mouse I used to harvest bell peppers - bit.ly What do you think of Farmville/Facebook games? Post in the comments or leave a video response! A Farmville Commercial Parody! Thanks to everyone who\'s tweeted/shared this, and thanks to FarmvilleFreak.com for featuring it on their site! Buy a shirt! Iloveyou. www ...'});
	cvids_92.push({vid:87740, thumb: 'http://i.ytimg.com/vi/6pYtxD92SpY/0.jpg', title: 'A Baby to Remember', desc: 'this is my son sleeping in the car on the way home. the music starts up and the rest is history. so funny!!!! a day to remember- the downfall of us all. TheAdamandChrisShow '});
	cvids_92.push({vid:87733, thumb: 'http://i.ytimg.com/vi/BLnD22MyiIw/0.jpg', title: 'Intel Labs\' Marvin Robot Plugging Itself Into Wall Outlet', desc: 'Intel Labs\' Marvin Robot Plugging Itself Into Wall Outlet by sensing electric fields emanating from the outlet. Learn more at Hizook.com -- www.hizook.com '});
	cvids_92.push({vid:87739, thumb: 'http://ats.vimeo.com/345/816/34581667_640.jpg', title: 'A New York City TimeLapse', desc: 'This is a different compression of a previous video...\n\nI spent two weeks in Manhattan shooting the National Parks of New York Harbor and these are some of the timelapse shots that I pulled off on the job, between shoots and in my spare time.\n\nThis was all shot on a Canon 5DMII with a variety of lenses. The motion control shots were done with my camBLOCK in a pan and tilt set-up\n\nThe music is \"Silver\" by Moby from mobygratis.com'});
	cvids_92.push({vid:87738, thumb: 'http://ats.vimeo.com/375/693/37569393_640.jpg', title: 'People in Yosemite: A TimeLapse Study', desc: 'Yosemite is bigger than Rhode Island at almost 800,000 acres, but it receives about 3.5 million visitors each year, and most of them spend time in Yosemite Valley. This project was shot back in 2005 after purchasing a Sony Z1U. This was my first HD project (ok, fine, HDV) and I spent about a week in Yosemite during the busy month of July. The footage was all shot in real time, and then sped up in post.\n\nI chose busy places during busy days to show the effects of this mass of humanity. I could have just as easily pointed my camera in another direction and shown nothing but plants, animals and wilderness. Yosemite is popular, but it\'s also still a relatively wild place.\n\nI\u2019ve lived and worked in National Parks for almost 20 years, and as much as I love landscape photography, I also like looking at the human footprint and the human experience in our national parks. Some of this footage helped me get my current job in 2006, as a videoographer for the National Park Service and the photographer/editor/producer of the web video series \"Yosemite Nature Notes\" http://www.nps.gov/yose/naturenotes\n\nThe music is from Peter Gabriel\u2019s \u201cPassion\u201d (a.k.a. the soundtrack from Martin Scorcese\u2019s \u201cThe Last Temptation of Christ\u201d) \n'});
	cvids_92.push({vid:87732, thumb: 'http://i.ytimg.com/vi/i9jz0G-RrDs/0.jpg', title: 'Star Wars Made in France', desc: 'Si Star Wars avait \u00e9t\u00e9 Fran\u00e7ais... Et bien \u00e7a aurait eu de la gueule... Quand on pense que Lucasfilm a os\u00e9 sortir cinq nouvels opus apr\u00e8s ce chef-d\'\u0153uvre frenchy... '});
	cvids_92.push({vid:87737, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/402/710/40271005_640.jpg', title: 'Paris Vol. 1', desc: 'Time lapse collection 1 of 20.\n\nPlease be patient as player loads.\n\n\nAlexander III Bridge, Paris, France\n\nJuly 2009\n\nClint Mansell, The Wrestler\n\nProject Equipment: \nCamera 1: Canon 5D Mk2 24 tse Mk2 tc-80n3\nCamera 2: Nikon D3 16 fish 24-70'});
	cvids_92.push({vid:87736, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/401/429/40142948_640.jpg', title: 'Paris Vol. 2', desc: 'Time lapse collection 2 of 20. \nPlease be patient as player loads. \n\nMus\u00e9e du Louvre, Mus\u00e9e de l\'Arm\u00e9e, \n\nJuly 2009\n\nTycho, From Home\n\nProject Equipment: \nCamera 1: Canon 5D Mk2 14 2.8 Mk2 24 tse Mk2 tc-80n3\nCamera 2: Nikon D3  16 fish 24-70'});
	cvids_92.push({vid:87735, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/401/594/40159446_640.jpg', title: 'Paris Vol. 3', desc: 'Time lapse collection 3 of 20. \nPlease be patient as player loads.\n\nThe Parc des Buttes Chaumont, Paris, France\n\nJuly 2009\n\nFlying Lotus, SexSlaveShip\n\nProject Equipment: \nCamera 1: Canon 5DII  14 2.8II 24 tseII tc-80n3\nCamera 2: Nikon D3  24-70 '});
	cvids_92.push({vid:87734, thumb: 'http://ats.vimeo.com/403/321/40332156_640.jpg', title: 'Paris Vol. 4', desc: 'Time lapse collection 4 of 20. \n\nPlease be patient as player loads.\n\n\"Paris is one of the most romantic cities in all the world. Seventh Movement takes us on a time-lapse journey throughout the city and shows us beautiful views of the Eiffel Tower during the day and night.\" -MyModernMet\n\nVol. 3 http://vimeo.com/8549656\nVol. 2 http://vimeo.com/8530881\nVol. 1 http://vimeo.com/8525840\n\nPlace de la Concorde, Tour Eiffel, Centre Georges Pompidou\n\nPelican City - Chestnut Park\n\nCamera 1: Canon 5D II 24 tse II 24-70  tc-80n3\nCamera 2: Nikon D3 14 -24 24 PC-e + GD ND filters\n\n'});
	cvids_92.push({vid:84044, thumb: 'http://s.mnstat.com/3610-large.jpg', title: 'Sneaky green screens', desc: 'The magic of digital green screens.'});
	cvids_92.push({vid:73201, thumb: 'http://i.ytimg.com/vi/a0jZzBEKIMc/0.jpg', title: 'Discovery Channel - The World Is Just Awesome', desc: 'The World Is Just Awesome dsc.discovery.com We want YOU to create your own video! 1) Download the music at the link above 2) Create your own video at home 3) Upload it as a video response to this video 4) We\'ll add it to our official playlist and share it with the world! Let\'s see what you\'ve got! Featured in the video are familiar stars of Discovery Channels hit series singing along in very familiar surroundings including Captains Sig Hansen, Phil Harris, Johnathan and Andy Hillstrand and ...'});
	cvids_92.push({vid:58074, 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_92.push({vid:53061, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/377/307/3773075_200.jpg', title: 'Slagsm\u00e5lsklubben - Sponsored by destiny', desc: 'School assignment to reinterpret the\nfairytale Little red ridning hood.\nInspired by R\u00f6yksopps Remind me.\n\nMusic: Slagsm\u00e5lsklubben, Sponsored by destiny\nwww.smk.just.nu\nAnimation: Tomas Nilsson\nwww.tomas-nilsson.se'});
	cvids_92.push({vid:53059, thumb: 'http://i.ytimg.com/vi/BpWM0FNPZSs/1.jpg', title: 'DEADLINE post-it stop motion', desc: 'Here is THE MAKING OF : www.youtube.com This is my senior project at Savannah College of Art and Design. Where my idea comes from is that every time when I am busy, I feel that I am not fighting with my works, I am fighting with those post-it notes and deadline. I manipulating the post-it notes to do pixel-like stop motion and there are some interactions between real actor and post-its. Directed by Bang-yao Liu Music by R\u00f6yksopp (royksopp.com) Sound design by Ian Vargo, Shaun Burdick Actor ...'});
	cvids_92.push({vid:51852, thumb: 'http://i.ytimg.com/vi/lk5_OSsawz4/1.jpg', title: '\'Star Wars (John Williams Is The Man)\' - an a cappella tribute [HQ, Closed Captioned]', desc: 'JOHN WILLIAMS IS THE MAN! A Star Wars-themed four-part a cappella musical tribute. Performed by Corey Vidal (vocals by Moosebutter) MY TWITTER: www.twitter.com MY FACEBOOK: www.facebook.com GET THE MP3 (AND READ THE LYRICS): www.moosebutter.com T-SHIRTS NOW AVAILABLE: zambooie.com 2008 PEOPLE\'S CHOICE AWARD VIDEO NOMINEE: en.wikipedia.org FREE A CAPPELLA SHEET MUSIC AVAILABLE: Learn all four parts of the song and sing it with some friends (or by yourself)!: www.mistertimdotcom.com A BIG ...'});
	cvids_92.push({vid:51853, thumb: 'http://i.ytimg.com/vi/LLEA1BgJ6YQ/1.jpg', title: 'Moscow Cats Theater', desc: 'Cats perform Cats at the Moscow Cats Theater. ... moscow cats theater animals children russia cat pet tricks kids meow '});
	cvids_92.push({vid:51851, thumb: 'http://i.ytimg.com/vi/Q6j7mtYXC7o/1.jpg', title: 'Invention Uses Mountain Dew for Fuel', desc: 'An Albuquerque, New Mexico man has developed a device that helps engines run on soda, including the highly-caffeinated Mountain Dew. (Aug. 2) ... soda for_fuel invention mountain dew fuel '});
	cvids_92.push({vid:51166, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/118/536/1185366_200.jpg', title: 'Michael Jordan Shatters Backboard', desc: 'Trieste (Italy) August 25 of 1986,Stefanel Trieste vs Juve Caserta, Nike exhibition game with Michael Jordan scores 30 points and shattering the backboard with a dunk.'});
	cvids_92.push({vid:50245, thumb: 'http://i.ytimg.com/vi/RY9u0LxIWJk/1.jpg', title: 'Jeremy Clarkson Beatbox - Swede Mason', desc: 'if Clarkson was an instrument... Pointless Mp3 download at soundclick.com/swedemason Ta Henry for the mpc Thanks all at b3ta.com ... Jeremy Clarkson Beat box video editing mash up what load of fucking bollocks '});
	cvids_92.push({vid:50243, thumb: 'http://i.ytimg.com/vi/00E_LVo_aTo/1.jpg', title: 'The quick brown fox jumps over the lazy dog', desc: 'In real life!'});
	cvids_92.push({vid:50199, thumb: 'http://i.ytimg.com/vi/I6Yi-4prC5E/1.jpg', title: 'President Obama doing Michael Jackson\'s Moonwalk', desc: 'Barack Obama Moonwalking? Check out the President of the USA following Michael Jackson\'s steps and dong the Moonwalk in front of hundreds of people in San Diego outside of Comicon on top of the Gunnar bus. Real or fake?!?! What other president has swagger like this to walk on the moon!? ... barack obama moonwalk president skeetv dj skee tv djskee comicon san diego moon walk bus dance dancing michael jackson real or fake comic con comi gunnar gunnars '});
	cvids_92.push({vid:49649, thumb: 'http://i.ytimg.com/vi/kLL9PFumLqw/1.jpg', title: 'Star Wars Imperial Walker Loft Bed', desc: 'This is a loft bed I made for my son that resembles a Star Wars AT-AT Imperial Walker. I searched the Internet and found scale models, cakes, legos, baby strollers and costumes resembling an AT-AT, but never found a bed that resembled an AT-AT. So I made one. It was made with materials available at any Home Depot or Lowe\'s. This is a video/slideshow of some of the photos I took during the build process. Hopefully this will help someone who might consider building their own AT_AT. My son sure ...'});
	cvids_92.push({vid:49648, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/189/357/18935741_200.jpg', title: 'Atomic Bombs', desc: 'This is a video that I decided to put together for this song I made. \n\nAll of the video is from the Public Domain. The music uses samples from sounds under various Creative Commons licenses, as well as some samples taken from old radio programs and films in the Public Domain.\n\nI used the following websites as media resources to complete this project: www.ccmixter.org, www.freesound.org, www.archive.org.'});
	cvids_92.push({vid:49647, thumb: 'http://i.ytimg.com/vi/xxT-f-hb8Sg/1.jpg', title: 'Chinese Press Workers', desc: 'Stamping facility in China. Quick! How many OSHA vioations do you count?!'});
	cvids_92.push({vid:49627, thumb: 'http://videos.snotr.com/2904-large.jpg', title: 'Coupon Lady', desc: 'You won\'t believe how much she saved...'});
	cvids_92.push({vid:48149, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/192/182/19218282_200.jpg', title: 'Street Scenes', desc: 'Music - Fuck Buttons\n\nExperimenting with animating reality, frame by frame..\nfeedback, thoughts, advice, do you think we are wasting our time.. anything - any thoughts really appreciated...\nAlso check out the Philip Glass version as an alternative experience!\n\nThanks for watching!'});
	cvids_92.push({vid:48142, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/113/721/11372139_200.jpg', title: 'Morningstar Mill Timelapse', desc: 'Morningstar Mill area at dusk in St. Catharines, Ontario. \n\nShot with a Nikon D90'});
	cvids_92.push({vid:48141, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/479/707/4797072_200.jpg', title: 'Compliments', desc: 'Reggie Steele teaches Kevin Avery - and the rest of us - that it\'s okay for one man to compliment another man\'s physical appearance. [Featuring Kevin Avery \& Reggie Steele; Written by Kevin Avery; Shot \& Directed by Alex Koll]'});
	cvids_92.push({vid:46146, thumb: 'http://i.ytimg.com/vi/1aodpb3vFU0/1.jpg', title: 'Roof Sex by PES', desc: 'XXX Chair-on-Chair Action!!! The first animated film by PES. ... roof sex pes stop motion chairs having furniture porn '});
	cvids_92.push({vid:44983, thumb: 'http://i.ytimg.com/vi/8pUAnrVWUkk/1.jpg', title: 'Bro Franklin (Offering Time)', desc: 'Bro.Franklin back at it once again Dancing like David as usual Just in case you wanna visit,, Redeemed Christian Church of God-Pavilion of Redemption 7707 Bissonnet St., Houston,TX, 77074 God Bless,, ... Bro.Franklin Por Pavilion of Redemption RCCG Redeemed Christian Church God Dancing like David '});
	cvids_92.push({vid:44685, thumb: 'http://i.ytimg.com/vi/lW6jW9y59JY/1.jpg', title: 'Winston Churchill, Techno Star', desc: 'Musician Michael Schmoyoho Gregory remixed a 1941 speech by Churchill with a techno beat. That is techno, right? I don\u2019t know anything about music, but I do know that this is awesome.'});
	cvids_92.push({vid:44587, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/123/029/12302902_200.jpg', title: 'SAMPARKOUR', desc: 'Samparkour is a short that reveals the city of S\u00e3o Paulo (Brazil) under the look of Parkour.\u00a0Where people see obstacles, Zico Corr\u00eaa visualize new possibilities.\n\nShot in HD with 35mm lens adapter\n\nwww.samparkour.com.br\n'});
	cvids_92.push({vid:44591, thumb: 'http://storage.zideo.nl/24032/6b34475a6f6c35786b6e343d.png', title: 'Alcoholic monkeys steal from girls in bikini\'s', desc: 'In the Caribbean, Vervet Monkeys have developed a taste for alcohol and can regularly be spotted stealing cocktails from humans on the beach. Brilliant wildlife video from BBC animal show \'Weird Nature\'.'});
	cvids_92.push({vid:44584, thumb: 'http://i.ytimg.com/vi/nM_ZB7jqxz8/1.jpg', title: 'Blue Angels cockpit footage', desc: 'Raw footage taken by me with a Flip Video camera.'});
	cvids_92.push({vid:43443, thumb: 'http://i.ytimg.com/vi/TVwhrJirgp0/1.jpg', title: 'Why a Mac is really the only option. Can your PC do this?', desc: 'There is really only one option when buying a computer, and it\'s a Mac. I mean seriously, can your PC do this?'});
	cvids_92.push({vid:43315, thumb: 'http://i.ytimg.com/vi/XoBIPZ1yzSE/1.jpg', title: 'Chris Milk: Last Day Dream', desc: 'Life in 42 seconds. Chris Milk\'s entry into Beijing\'s 42x42 film festival. Director: Chris Milk Writer: Chris Milk Production Company: Radical Media Producer: Samantha Storr Associate Producer: Brad O\'Connor Editor: Livio Sanchez Production Design: Matthew Holt Telecine: Dave Hussey Sound Design: Eddie Kim More info on www.chrismilk.com ... Chris Milk Last Day Dream The last 42 seconds Milk\'s entry Beijing\'s 42x42 film festival short trailer art life in '});
	cvids_92.push({vid:43568, thumb: 'http://storage.zideo.nl/24032/6b34475a6e3164716b6e383d.png', title: 'Bill Murray wins', desc: 'Hey, he\'s still got a sense of humor! Hanging out at The U.S. Open, Bill Murray busted out Caddyshack\'s Carl Spackler for a local TV reporter, who made a sly reference to it. Check it out.'});
	cvids_92.push({vid:43445, thumb: 'http://assets0.ordienetworks.com/tmbs/0be5c681fc/fullsize_18.jpg?3e082e7a', title: '\n    Buzz Aldrin\'s Rocket Experience\n  ', desc: '\n          \n      \n        Buzz Aldrin\'s Rocket Experience 3:34\n        Full version of Buzz Aldrin\'s new song \"Rocket Experience\"\n\nA portion of the proceeds from the song sales of Rocket Experience will go to ShareSpace Foundation, to further benefit and support the work of the National Space Society, the Planetary Society and the Astronaut Scholarship Foundation.\n\nTo learn more about Buzz, go to http://buzzaldrin.com/\n        Submitted by: Buzz Aldrin\n        Kinda Cute\n        Keywords: buzz aldrin rocket experience rap snoop dogg talib kweli hip hop nasa moon\n        Views: 26,688\n      \n\n  '});
	cvids_92.push({vid:43444, thumb: 'http://assets0.ordienetworks.com/tmbs/f7a26d7505/fullsize_9.jpg?3e082e7a', title: '\n    Making of Buzz Aldrin\'s Rocket Experience w/ Snoop Dogg and Talib Kweli\n  ', desc: '\n          \n      \n        Making of Buzz Aldrin\'s Rocket Exper... 4:30\n        Buzz Aldrin ( http://buzzaldrin.com ) is an astronaut, a hero, and a hip hop legend. He hits the studio with Snoop Dogg and Talib Kweli to record his latest track, Rocket Experience. Quincy Jones and Soulja Boy also weigh in on Buzz\'s lyrical genius and impact on the music world.\n        Submitted by: Buzz Aldrin\n        Kinda Cute\n        Keywords: buzz aldrin snoop dogg talib kweli quincy jones soulja boy rap hip hop astronaut science space Magnificent Desolation: The Long Journey Home from the Moon\n        Views: 81,815\n      \n\n  '});
	cvids_92.push({vid:43345, thumb: 'http://i.ytimg.com/vi/PH6xCT2aTSo/1.jpg', title: 'Street Art: Joshua Allen Harris\' Inflatable Bag Monsters', desc: 'Call us boring and simple-minded, but before we saw the work of street artist Joshua Allen Harris we never once considered the artistic possibilities of subway exhaust. Using only tape and garbage bags, Harris creates giant inflatable animals that become animated when fastened to a sidewalk grate. Steven Psyllos caught up with Harris recently to discuss his older works (including a bear and a giraffe) and unveil a new beast that looks not unlike the Cloverfield monster. Video by Jonah Green ...'});
	cvids_92.push({vid:43339, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/956/196/9561960_200.jpg', title: 'Oil in Water', desc: 'Just messing around one day, with my Canon Rebel XT DSLR.\n\nOil being poured into a cup of water.\n\n\nMusic by Bonobo // Recurring\n\n\n\nedit 4/24 6:30am:\n\nWOW! I\'m glad everyone is liking this so much! I really didn\'t even put any thought into the timing or editing of this. i just went through the sequences i had, in order, and tossed some music over it. The frames are pretty much un-edited. I think I changed the white balance, and added some sharpness, and that was all.\n\nI wish I had an actual video camera, that could capture some of the things I see, when photographing my subjects. IMO the time-lapse looks neat, but does not do it justice. \n\nA lot of people are asking how I did this. It\'s pretty simple. I just put the camera on its\' lowest jpeg setting, placed the camera into continuous mode, and locked the shutter down with my wired remote. The oil is being dumped into a tall cylindrical glass, with about a cup of water in it. The whole thing is lit from behind by a diffused clamp light. \n\n\n'});
	cvids_92.push({vid:43318, thumb: 'http://i.ytimg.com/vi/R2a8TRSgzZY/1.jpg', title: 'The Vendor Client relationship - in real world situations', desc: 'www.vendorclientvideo.com Produced by Scofield Editorial, Inc. Casting Agency Artistic Enterprises Casting Director: Michelle Moore Video Store Customer: David Meek Video Store Clerk: Nick Krcek Restaurant Customer (Male): Andy Guerdan Restaurant Customer (Female): Andrea Gregory Server: Landon Mitchell Chef: Ron Pinkney Hair Stylist: Chris Cones Salon Patron: Ana Martinez Additional Crew: Lighting Director: Luke Amos Camera Assist/Best Boy/Boom Op: Benjamin Dewhurst Location Audio/Mix: Ben ...'});
	cvids_92.push({vid:43317, thumb: 'http://i.ytimg.com/vi/1pKXMcfx1d8/1.jpg', title: 'I crush thee!', desc: 'Kids in the hall srushes businessmen\'s heads'});
	cvids_92.push({vid:43314, thumb: 'http://i.ytimg.com/vi/ahVu5mrXMYQ/1.jpg', title: 'Remind me never to drive in Romania...', desc: 'He should win an award for the most unconscious driver of the year ... shocking romanian driver dancing driving stirile pro tv accident '});
	cvids_92.push({vid:44585, thumb: 'http://i.ytimg.com/vi/LbvP7dT3Dx0/1.jpg', title: 'Indian Thriller', desc: 'Thriller - The Indian Version ... michael jackson thriller indian india funny 80s '});
	cvids_92.push({vid:43313, thumb: 'http://i.ytimg.com/vi/1UiFiTE71ts/1.jpg', title: 'networkSim - air traffic network simulation', desc: 'In the flight control tower of the Lufthansa Brand Academy Frankfurt-Seeheim visitors learn about the local and global connections of international air traffic. A 14 meter wide 180 degree projection lets users dive into the fully navigable, realtime 3D visualization of 16000 daily Lufthansa and Star Alliance flights. The intuitive navigation interface provides 6 degrees of freedom. Additional time and content filters can be activated with extra buttons and sliders. In just a few seconds of ...'});
	cvids_92.push({vid:42328, thumb: 'http://i.ytimg.com/vi/D6_6qg_iUyY/1.jpg', title: 'Freshwater otter plays piano', desc: 'Dua, an Asian small-clawed otter at the Monterey Bay Aquarium, plays the piano as a behind-the-scenes enrichment. This activity was created to give Dua something interesting to do and extend his feeding time, while showing off his species dexterity. You can learn more by visiting www.wildaboutotters.com. ... \"Monterey Bay Aquarium\" otters piano enrichment fun cute \"cute otter\" \"cute otters\" '});
	cvids_92.push({vid:42326, thumb: 'http://ak2.static.dailymotion.com/static/video/349/597/15795943:jpeg_preview_large.jpg?20090528205326', title: 'TOP 10', desc: '1 Exp\u00e9rience RUBIKCUBISTE par l\'artiste SPACE INVADER Trailer de l\'exposition \&quot;TOP 10\&quot; chez Jonathan LeVine Gallery @ NYC www.space-invaders.comR\u00e9alisation : www.extermitent-production.com'});
	cvids_92.push({vid:42327, thumb: 'http://i.ytimg.com/vi/xhTLaALEMHg/1.jpg', title: '(HD) Kanye West - Robocop (1988 import version)', desc: 'SD version here: www.youtube.com *UPDATE* To clear up the confusion some people are causing: this is NOT a dub of existing video game footage. I created ALL the graphics myself. I do reference numerous NES games (MegaMan II, Punchout, Battletoads, Double Dragon, Ninja Gaiden etc) in the video, but I am NOT using any of the original graphics. Please note: this music video was not commisioned by Kanye West. Robocop is simply my favorite song on the album, and one day I figured why not make a ...'});
	cvids_92.push({vid:42083, thumb: 'http://i.ytimg.com/vi/6dps4NrxGzo/1.jpg', title: 'Raccoons Rescued From Vending Machine', desc: 'Imagine dropping your quarters into a vending machine and having a raccoon face pop out instead of your drink. That\'s what happened to some residents at an apartment complex in Tulsa, Oklahoma. (June 15) ... raccoons drink-machine rescued from vending machine '});
	cvids_92.push({vid:42082, thumb: 'http://i.ytimg.com/vi/ZGFK8c4ROow/1.jpg', title: 'Pug Fight', desc: 'An animated short that explores the unbelievably cruel but really adorable world of underground pug fighting. ... Pug Fight Animation \"animated short\" skit \"sketch comedy\" '});
	cvids_92.push({vid:41886, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/158/786/15878631_200.jpg', title: 'The Mp3 Experiment Six', desc: 'Experimento Social'});
	cvids_92.push({vid:41884, thumb: 'http://i.ytimg.com/vi/8m86mm-SMGA/1.jpg', title: 'BREADBOX64 - A twitter client for the C64/C128 running on a C128D', desc: 'Hi, Here\'s a (bad) video of me showing my twitter client for the C64. Please find more info at my blog: www.vandenbrande.com ... C64 twitter '});
	cvids_92.push({vid:41882, thumb: 'http://i.ytimg.com/vi/bJ_bsHT0AoQ/1.jpg', title: 'UCLA Undie Run: Who are you wearing?', desc: 'Los Angeles is the entertainment capitol of the world, and everybody wants to know ... \"Who are you wearing?\" The Times went to UCLA during their traditional undie run to find out what\'s hot. ... UCLA \"Undie Run\" Undies Underwear College Fun Fashion Funny Humor Clothes Style Red Carpet Hollywood Los Angeles California Westwood '});
	cvids_92.push({vid:40604, thumb: 'http://i.ytimg.com/vi/KZlQd2Eg-9w/1.jpg', title: '\&quot;Someone made a huge mistake asking me to do this...\&quot; Commencement Speech', desc: 'Eugene Mirman was invited back to his high school to provide the commencement address, or whatever they call the speech at a high school graduation. You know, baby commencement.'});
	cvids_92.push({vid:40352, thumb: 'http://cdn-thumbs.viddler.com/thumbnail_2_fdbc5784.jpg', title: 'Project Natal - Xbox 360', desc: 'Project Natal - Xbox 360\'s motion controller'});
	cvids_92.push({vid:40353, thumb: 'http://i.ytimg.com/vi/3Za-V_lhwGg/1.jpg', title: 'Expialidocious', desc: 'Video for my track \'Expialidocious\'. The track is composed of a sine wave bass, custom drum sequences, and sounds recorded from the Disney film \'Mary Poppins\'. Download the MP3 here: rapidshare.com'});
	cvids_92.push({vid:40351, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/121/920/12192013_200.jpg', title: 'RE:PLAY FILM FESTIVAL: Ubik \"Voxel\"', desc: 'Directed by Ubik\nConcept \& Visualization: Ubik \& John Paul Harney\nTechnical Director: John Paul Harney\nProducer: Josephine Gallagher\nExecutive Producer: Daniel O\'Rourke\nProduction Assistant: Kelly Ford\nAnimation: John Paul Harney \& Ubik\nDirectory of Photography: Simon Paul\nCamera Assistants: Geoff Robbins \& Sky Sharrock\nStills Photography: Robin Brigham \& Paul Allen\nColorist: Ben Rogers at Glassworks\nTechnical Support: Luke Allen\n\nSound Track: \"A Drifting Up\" by Jon Hopkins from the album \"Insides\"\nCourtesy of Double Six Records \& Domino Records\nPublisher Serena Benedict at Just Music\nShot on Fuji Film\n\nWith thanks to Amanda Ryan \& Hector Macleod\nAndrea Barlow at Towergate\nWilly and Tony at Carmel College\n\nThis film was created as part of the F5 RE:PLAY Film Festival: http://f5fest.com '});
	cvids_92.push({vid:40350, thumb: 'http://i.ytimg.com/vi/vfxCnZ4Dp3c/1.jpg', title: 'Hammer Pants Dance (HD)', desc: 'Group of dancers wearing Hammer Pants flashmob a trendy store and surprise hipsters in skinny jeans. ... Hammer MC Hammertime Pants Parachute Attack Flash Mob Skinny Jeans A\&E Cant Touch This Marc Klasfeld hammerpants '});
	cvids_92.push({vid:40348, thumb: 'http://i.ytimg.com/vi/2Jnpi-uBiIg/1.jpg', title: 'Play Arrington off, Keyboard Cat', desc: 'Michael Arrington gets out of line...Leo Laporte loses his cool...keyboard cat is there to the rescue. ... Michael Arrington Leo Laporte Keyboard Cat '});
	cvids_92.push({vid:40347, thumb: 'http://i.ytimg.com/vi/vfdoLBni4zA/1.jpg', title: 'Paper Towels', desc: 'The best thing since Shamwow!!! Watch more at www.MagicHugs.com ... magic hugs magichugs shamwow paper towels infomercial Vince Shlomi offer '});
	cvids_92.push({vid:40346, thumb: 'http://i.ytimg.com/vi/sDocL7AfIRo/1.jpg', title: 'Baby Talk, Bla Bla Bla!!!!', desc: 'A baby is talking in her language, Funny! ... Baby talk funny '});
	cvids_92.push({vid:40345, thumb: 'http://i.ytimg.com/vi/lhAr_UeroCk/1.jpg', title: 'Rise of the Idiots', desc: '\"Rise of the Idiots\", by Dan Ashcroft. Scene from the excellent \"Nathan Barley\" series in which Dan Ashcroft gives a commentary on the rise of the idiot classes. Many people think this rant is the exposition of co-creator Chris Morris\'s own feelings on popular culture. ... nathan barley chris morris dan ashcroft idiots trashbat djave bikinus pingu '});
	cvids_92.push({vid:40344, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/572/118/5721187_200.jpg', title: 'Iron Man vs Bruce Lee', desc: 'Iron Man fights Bruce Lee in stop motion...'});
	cvids_92.push({vid:38593, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/136/419/13641957_200.jpg', title: 'Little Big Love', desc: 'Awardwinning short film about unrequited love - a tiny robot falls in love with an electric kettle. Shot with a total budget of \u00a3300, check out \'making of\' stuff at http://www.littlebiglove.com'});
	cvids_92.push({vid:38831, thumb: 'http://i.ytimg.com/vi/LLoOD-m610U/1.jpg', title: 'A   Kiss  of  Ecstacy', desc: 'Hehehehe Jesus wants to ravish you with His Love! ... God Jesus Holy Ghost Spirit Charismatic Love Intimacy Glory Fire Ravish Husband Wife Ecstacy Loveified Witch Warfare Witchcraft Pagan 666 Coven Warlock Master Drugs Coke Cocaine Heroin Alcohol Vodka John Crowder Ben Dunn Todd Bentley Heidi Baker Aurorainthedesert '});
	cvids_92.push({vid:38800, thumb: 'http://i.ytimg.com/vi/asMYiAG6FqU/1.jpg', title: 'Spam Police', desc: 'A man on a mission to stop the evil of chain comments. Lego gun provided by www.brickarms.com ... Lego Animation \"Stop Motion\" Brickfilm Fight '});
	cvids_92.push({vid:38592, thumb: 'http://i.ytimg.com/vi/GhuvaKLJbNw/1.jpg', title: 'The cutest video you will see all day', desc: 'Baby Otters Sea World Orlando 2009. Newborn Asian Small-clawed Otters frolic at Sea World Orlando. Video courtesy of and copyright by Sea World Orlando. ... Baby Otters \&quot;Sea World\&quot; Orlando \&quot;asian-small clawed\&quot; '});
	cvids_92.push({vid:38590, thumb: 'http://i.ytimg.com/vi/0-JULFxB0sk/1.jpg', title: 'China just copied Disneyland - what\'s next, the White House?', desc: 'The President of the park, who is interviewed in the video, tells them that nothing is copied from Disney and that all the characters are original creations (He also says the line about Mickey rip-off = big-eared cat). However, a little girl they encounter tells them that she sees Disney characters, and even the people inside the character costumes admit that they\'re based on Disney\'s creations. www.bs-amusement-park.com ... Tibet chinese BOOTLEG China Disney Olympic Beijing 2008 Copyright ...'});
	cvids_92.push({vid:38588, thumb: 'http://i.ytimg.com/vi/a45dXztokZM/1.jpg', title: 'Chemistry so even girls understand', desc: 'See how fun chemistry can be. ... chemistry marie curie programme '});
	cvids_92.push({vid:44589, thumb: 'http://i.ytimg.com/vi/pSm7BcQHWXk/1.jpg', title: 'Alcoholic monkeys steal from girls in bikini\'s', desc: 'In the Caribbean, Vervet Monkeys have developed a taste for alcohol and can regularly be spotted stealing cocktails from humans on the beach. Brilliant wildlife video from BBC animal show \'Weird Nature\'.'});
	cvids_92.push({vid:37426, thumb: 'http://i.ytimg.com/vi/4xm4EjErEKE/1.jpg', title: 'Meet a Pool Shark Who\'s Still in Diapers', desc: 'A pool shark in New York is making a name for himself, and it might have something to do with his age. Keith O\'Dell is only 23-months old. ... pool billiards shark New York Diapers kid cue cool funny skills baby play toddler little '});
	cvids_92.push({vid:37311, thumb: 'http://a.images.blip.tv/ListentotheMusic-ConfessionsOfASuperhero483-767-61.jpg', title: 'Confessions of a Superhero', desc: '\n\nCONFESSIONS OF A SUPERHERO is a feature length documentary that chronicles the lives of three mortal men and one woman who make their living working as superhero characters on Hollywood Boulevard.  This deeply personal look into their daily routines reveals their hardships and triumphs as they pursue and achieve their own kind of fame.  The Hulk sold his Super Nintendo for a bus ticket to LA; Wonder Woman was a mid-western homecoming queen; Batman struggles with his anger, while Superman\u0092s psyche is consumed by the Man of Steel.  Although the Walk of Fame is right beneath their feet, their own paths to stardom prove to be long, hard climbs. \n\n'});
	cvids_92.push({vid:38591, thumb: 'http://i.ytimg.com/vi/_Fe17mCBzAk/1.jpg', title: 'Iraq vs Europe burnout showdown - Iraq wins hands down', desc: 'Boon Burnout in Europe vs. Perfect Iraqi Burnout Second Song is Daler Mehndi - Tunak Tunak Tun ... Iraq BMW Burnout Bike All Iraqi Road Accident Bus '});
	cvids_92.push({vid:37428, thumb: 'http://i.ytimg.com/vi/PJnn-wMPU9w/1.jpg', title: 'WTF is this??', desc: 'It looks cute but scary at the same time.'});
	cvids_92.push({vid:38589, thumb: 'http://i.ytimg.com/vi/CpQ1R8wTE8w/1.jpg', title: 'You know you need AA help if you need this...', desc: 'For those public situations when an open beer can is \&quot;frowned upon\&quot;. It\'s camouflage for your beers! hellosmarty.com ... Beer Party Park Beach Softball Drinking Fun '});
	cvids_92.push({vid:37163, thumb: 'http://videos.snotr.com/1682-large.jpg', title: 'The end of the world', desc: 'This is how it would look like if a big meteorite would hit the Earth.'});
	cvids_92.push({vid:37166, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/536/944/5369447_200.jpg', title: 'Miniature City', desc: 'fixed spell miss version (^ ^;\n\nCamera : Canon EOS 5D mark II\nLens : MC ARAX 2.8/35mm Shift\&Tilt lens\nMusic Source : PROPAN_MODE\nPiano : mockmoon\nSoftware : Adobe After Effects CS3 / Cubase 4LE\n'});
	cvids_92.push({vid:37167, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/131/654/13165484_200.jpg', title: 'miniature city 2 - featuring vividblaze -', desc: 'BGM : \"tight rope (floor mix)\" by vividblaze\nMovie : mockmoon\nCamera : Canon EOS 5DmarkII\nLens : PC Micro-Nikkor 85mm F2.8D \& MC ARAX 2.8/35mm Tilt \& Shift lens\nPlace : Tokyo \& Yokohama, Japan'});
	cvids_92.push({vid:37168, thumb: 'http://i.ytimg.com/vi/Fn0lhsXHEhc/1.jpg', title: 'Maybe One Day', desc: 'a Rankin \& Chris Production / Directed by Chris Cottam / UK / 2009 VOTE NOW: Future Shorts and Samsung Mobile i8910 HD Capture Your Life In HD at www.futureshorts.com This film conveys a sense of life and experience, extreme and heightened feelings as well as pensive and quiet moments. It is reminiscence, a visual diary and a document of a day. This is achieved through the journey of one man. ... \"Samsung i8910HD\" \"Samsung HD Mobile\" \"Mobile Giveway\" \"rankin \& chris\" \"Please Say Something ...'});
	cvids_92.push({vid:36106, thumb: 'http://i.ytimg.com/vi/FIWf_hc1_TM/1.jpg', title: 'Very Funny Sleeping Baby Pigs React To Sounds !!!', desc: 'Very Funny Sleeping Baby Pigs React To Sounds !!! ... Very Funny Sleeping Baby Pigs React To Sounds !!! '});
	cvids_92.push({vid:35933, thumb: 'http://i.ytimg.com/vi/l1TcJKFB0sY/1.jpg', title: 'Serious job complaints', desc: 'Kneading models for a living can be though for anyone'});
	cvids_92.push({vid:35912, thumb: 'http://i.ytimg.com/vi/7U66tYpzQTE/1.jpg', title: 'Epic beatbox performance Julia Dales', desc: 'Julia Dales (age: 17 country: Canada) Beatbox battle world champs wild card More.'});
	cvids_92.push({vid:35451, thumb: 'http://i.ytimg.com/vi/lT9v26y7F6E/1.jpg', title: 'Divorce Songs of the 1980s', desc: 'These are the hits your parents broke up to. Want to see more cool videos? Check out www.yubby.com ... yubby divorce songs timelife time \"time life\" divorcing music '});
	cvids_92.push({vid:34037, thumb: 'http://i.ytimg.com/vi/AfqDVP_0O0c/1.jpg', title: 'What would an invasion of the Star Wars Impirial Fleet look like?', desc: 'Imperial Fleet Week. For those interested in how I made it: I shot the background video on a 1/3-chip DV camera (TRV25). The Star Wars vehicles are either 2D stills found on the internet, or video I roto-scoped out of the movies, which I then motion-tracked and composited in After FX. I used the trapcode particular plug-in for some steam and smoke effects, and did basic sound design and assembly in Final Cut. Thanks for watching! - Mike Horn ... Star Wars Death San Francisco Imperial AT-AT ...'});
	cvids_92.push({vid:33985, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/949/165/9491656_200.jpg', title: 'SIGNS', desc: ''});
	cvids_92.push({vid:33899, thumb: 'http://i.ytimg.com/vi/6jWXwpFFNSM/1.jpg', title: 'How To Go F**k Yourself', desc: 'www.howcast.com You\'ve just heard those 3 magic words, but you\'re not sure what to do next. This should help. www.youtube.com poykpac.com CAST Boss - Quincy Dunn-Baker Angry Underling - Ryan Hunter CEO - Bob Sann CREDITS Director - Taige Jensen Writer - Ryan Hunter Producer - Tyler Jackson Editor - Ryan Hunter Graphics - Taige Jensen ... POYKPAC P0YKPAC comedy sketch parody howcast how to go fuck yourself layoffs outsourcing financial crisis wall street mean boss fired office politics f**k you ...'});
	cvids_92.push({vid:33879, thumb: 'http://images.vimeo.com/13/55/09/135509014/135509014_200.jpg', title: 'Eepybird\'s Sticky Note Experiment', desc: 'From the creators of the Diet Coke and Mentos experiment, EepyBird show us how to have fun with sticky notes. eepybird.com'});
	cvids_92.push({vid:33880, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/959/597/9595971_200.jpg', title: 'Post-it Note inventor watches Sticky Note Experiments', desc: 'I recently photographed Art Fry, inventor of Post-it Notes, for an ongoing project I\'ve been doing taking portraits of inventors (see http://www.dfpblog.com/inventors for more details on that). I asked if he had ever seen Eepybird\'s Sticky Note Experiments video, and he said he hadn\'t, so I played it for him on my iPhone.\n\nThis is his reaction while he watched it for the first time. (You can see it at http://www.eepybird.com or http://www.vimeo.com/1700732)'});
	cvids_92.push({vid:33878, thumb: 'http://i.ytimg.com/vi/-uwY3sjqYX0/1.jpg', title: 'Fast Food Folk Song', desc: 'Next time you\'re at Taco Bell, think of us. Yes, the guy\'s reaction is totally authentic. He had no idea we were coming, and he really got the order right (almost right). We couldn\'t believe it either!'});
	cvids_92.push({vid:32168, thumb: 'http://i.ytimg.com/vi/1jByfWOLmjo/1.jpg', title: 'The story of the big squirrel and the baby squirrel', desc: 'A story about a big squirrel and a baby squirrel. ... UCLA squirrel university california los angeles '});
	cvids_92.push({vid:32021, thumb: 'http://i.ytimg.com/vi/ASibLqwVbsk/1.jpg', title: '1976 Swine Flu Propaganda', desc: 'Follow the news and get alternative views at searchfortruth.homestead.com ... bird avian pig human conditioning vaccine inoculation spread manufactured health \"mind control\" conspiracy elite baxter merck bayer \"big pharma\" '});
	cvids_92.push({vid:31940, thumb: 'http://i.ytimg.com/vi/E8B4_fGopzw/1.jpg', title: 'I want bionic penguins with freaking lasers in their eyes!', desc: '... Festo Aqua Penguin '});
	cvids_92.push({vid:31976, thumb: 'http://l.yimg.com/a/p/i/bcst/videosearch/6520/76791429.jpeg', title: 'Playing For Change: Song Around the World | Stand By Me', desc: 'If this video doesn\'t bring a tear to your eyes and makes you smile for the rest of the day, you are a cold hearted bastard. Watch it from beginning to end\u2014you won\'t regret it.\n\nThis cover of Stand By Me was recorded by completely unknown artists in a street virtual studio all around the world. It all started with a base track\u2014vocals and guitar\u2014recorded on the streets of Santa Monica, California, by a street musician called Roger Ridley. The base track was then taken to New Orleans, Louisiana, where Grandpa Elliott\u2014a blind singer from the French Quarter\u2014added vocals and harmonica while listening to Ridley\'s base track on headphones. In the same city, Washboard Chaz\'s added some metal percussion to it.\n\nAnd from there, it just gets rock \'n\' rolling bananas: The producers took the resulting mix all through Europe, Africa, and South America, adding new tracks with multiple instruments and vocals that were assembled in the final version you are seeing in this video. All done with a simple laptop and some microphones.\n\nI don\'t know about you, but it blew me away. Best version of Ben E. King\'s classic I\'ve ever heard in my life. And I\'ve probably heard between five and two billion of them.'});
	cvids_92.push({vid:31938, thumb: 'http://i.ytimg.com/vi/9QHslHpK4-Q/1.jpg', title: 'Bruce Lee plays ping pong with nunchuck.flv', desc: 'Bruce Lee plays ping pong with nunchuck - allegedly Filmed with the incredible Nokia N96 ... Bruce Lee plays ping pong with nunchuck nunchucku nunchucks numchucks nokia n96 '});
	cvids_92.push({vid:31937, thumb: 'http://i.ytimg.com/vi/iROYzrm5SBM/1.jpg', title: 'Facebook Manners And You', desc: 'Do you have good Facebook manners? Timmy and Alice don\'t. Watch their bad behavior to learn the dos and don\'ts of Facebook breakups. Responsible Relationships and You is a production of www.YourTango.com. Presented by Big Fuel The Consumer Engagement Agency http Join the Facebook group, Timmy Gordon\'s A Real Wet Blanket: www.facebook.com Let Timmy know you feel about him! YourTango is your source for smart talk about love, sex, dating and relationships. Whether you\'re married, single, taken ...'});
	cvids_92.push({vid:31932, thumb: 'http://i.ytimg.com/vi/OLj5zphusLw/1.jpg', title: 'Beyonce 100 Single Ladies Flash-Dance Piccadilly Circus, London for Trident Unwrapped', desc: '100 Single Ladies stop traffic with Beyonce\'s famous leggy dance in Piccadilly Circus, to celebrate the announcement by Trident of its free Beyonce gig in November. www.tridentunwrapped.co.uk ... \"The O2\" \"I am...\" \"Sasha Fierce\" \"Tour Date\" Tour \"New Date\" \"New Competition\" \"Chewing Gum\" Gum Ballot Tickets Beyonce \"Single Ladies\" Piccadilly Circus \"Piccadilly Circus\" Dance Flashmob \"Flash Dance\" Flash Trident \"Trident Unwrapped\" '});
	cvids_92.push({vid:31935, thumb: 'http://40.media.vimeo.com/d1/5/56/32/26/thumbnail-56322634.jpg', title: 'Science Machine', desc: 'The 36\" x 24\" print can be purchased at my new store! http://store.thebigpugh.com\n\nThis piece inspired the login illustration that vimeo commissioned from me for their redesign earlier this year; it is still in use throughout the site. The video is a condensed time lapse of screenshots over a several month period.  Total physical drawing time is close to 40 hours and I\'d add an equal amount of time for concept time and readying the print.  A screenshot was taken every 5 seconds, which actually results in a full 18 minute video, but I shrunk it into a video under 7 minutes for entertainment\'s sake. The full video can be found here: http://www.vimeo.com/1015679\n\nMy life has changed a lot since i started this, so I thought it appropriate to include my friends, family and loved ones since they all were on my mind throughout the creative process. The music is from Portishead\'s latest album, here: http://www.amazon.com/Third/dp/B0018CA996/ref=pd_bbs_sr_2?ie=UTF8\&s=dmusic\&qid=1219248848\&sr=8-2\n\nEnjoy!\n'});
	cvids_92.push({vid:31933, thumb: 'http://i.ytimg.com/vi/Ht96HJ01SE4/1.jpg', title: 'Queen Bohemian Rhapsody Old School Computer Remix', desc: 'This is dedicated to all fans of Queen and hey let\'s not forget about Mike Myers and Dana Carvey of Wayne\'s World. No effects or sampling were used. What you see is what you hear (does that even make sense?) Atari 800XL was used for the lead piano/organ sound Texas Instruments TI-99/4a as lead guitar 8 Inch Floppy Disk as Bass 3.5 inch Harddrive as the gong HP ScanJet 3C was used for all vocals. Please note I had to record the HP scanner 4 seperate times for each voice. I wanted to buy 4 HP ...'});
	cvids_92.push({vid:31934, thumb: 'http://i.ytimg.com/vi/vbJSuduTrPs/1.jpg', title: 'Laptop Hunters: Homeless Frank', desc: 'With \0000 to spend, homeless Frank finds his perfect laptop. Featuring Jim Santangeli. Written by the Landline. Filmed at Mike\'s Tech Shop (www.mikestechshop.com). ... laptop hunters lisa jackson lauren giampaolo pc windows microsoft ad campaign apple mac big screen '});
	cvids_92.push({vid:31929, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/926/653/9266537_200.jpg', title: 'subprime', desc: 'watch the american housing market spiral out of control.\nbeeple.com / myspace.com/nobot / standingwavesound.com\n\n\n'});
	cvids_92.push({vid:31936, thumb: 'http://i.ytimg.com/vi/ivjybzdXVmI/1.jpg', title: 'Flight Attendant doing raps!! (complete ed.)', desc: 'Instead of another boring flight announcement...This Airline attendant makes flying a lot more interesting!! ... rap \"flight attendant\" '});
	cvids_92.push({vid:31975, thumb: 'http://i.ytimg.com/vi/TGTJSorTQvw/1.jpg', title: 'Entourage - Ari Gold\'s Best of', desc: 'A collection of some of Ari Gold\'s best moments from the first 2 seasons of Entourage. I did not include his showdown with Weinstein and him hitting the wall with his hand because of time constraints (10 Min) and the fact that these clips were already up on youtube and I wanted to include less-known scenes. Make sure you check out the Season 3 compilation! ... Entourage Ari Gold Jeremy Piven HBO Hollywood Compilation Turtle Lloyd Drama Best Original '});
	cvids_92.push({vid:31931, thumb: 'http://i.ytimg.com/vi/g_gr30L6fAM/1.jpg', title: 'The Seed', desc: 'Animation by Johnny Kelly'});
	cvids_92.push({vid:31930, thumb: 'http://i.ytimg.com/vi/lQ3D4CqHbJM/1.jpg', title: 'Philips Carousel Commercial  - Adam Berg', desc: 'Goto www.cinema.philips.com to experience the film in 21:9 Philips Carousel - a short film from Adam Berg and Stink Digital Red carpet roll-out for Cinema 21:9 interactive website Amsterdam, April 16, 2009 /PRNewswire/ \u2014 Philips announces the launch of the exclusive \'Carousel\' movie to promote the eagerly anticipated Cinema 21:9 LCD TV. To celebrate the imminent arrival of the groundbreaking Cinema 21:9 LCD TV, Philips has launched a new website which will act as the dedicated online home of ...'});
	cvids_92.push({vid:34041, thumb: 'http://i.ytimg.com/vi/Bp26HIdPyYY/1.jpg', title: '{VIDEO} First Full Face Transplant Recipient Speaks', desc: 'Five years ago, a shotgun blast left a ghastly hole where the middle of her face had been. Five months ago, she received a new face from a dead woman. Connie Culp stepped forward Tuesday to show off the results of the nation\'s first face transplant, and her new look was a far cry from the puckered, noseless sight that made children run away in horror. ... Connie Culp First Full Face Transplant Recipient Speaks 05/05/09 '});
	cvids_92.push({vid:44683, thumb: 'http://i.ytimg.com/vi/lW6jW9y59JY/1.jpg', title: 'Winston Churchill backed by band from the future', desc: 'mp3: amiestreet.com Churchill gives a dazzling rendition of his 1941 proclamation, aided by wayward time travelers. mp3 for \"Lift Up Your Hearts\" available here: thegregorybrothers.com New facebook page, with sound files and goodies: www.facebook.com Original Churchill speech: www.youtube.com ... winston churchill sings michael gregory 1941 proclamation time travel keytar world war hitler allied forces '});
	cvids_92.push({vid:53060, thumb: 'http://i.ytimg.com/vi/HePWBNcugf8/1.jpg', title: 'Pulp Fiction in Motion Graphics', desc: 'Scene in Pulp Fiction represented with Typography. By Jarratt Moody. www.jarrattmoody.com www.jarratt.tv ... Pulp Fiction Typography Motion Graphics Samuel L. Jackson '});
curvid_92=21;
html+='<div class="v69resetstyle" id="thumb_92" style="width:425px;height:343px;background-color:#FFFFFF;position:relative;">';
html+=vidthumbhtml_92(curvid_92);
html+='</div>';
	html +='<div class="v69resetstyle" style="height:26px;width:425px;position:relative;background-color:#FFFFFF;">';
	html +='<div class="v69resetstyle" style="position:absolute;left:35px;top:3px;color:#444;font-size:11px;line-height:10px;cursor:pointer;width:185px;height:20px;overflow:hidden;" onclick="location.href=vidplayurl_92();"><span style="color:#888;">You are watching channel</span><br/>Amazing videos period</div>';
	html +='<img style="position:absolute;left:281px;top:0px;height:25px;z-index:5;cursor:pointer;margin:0;padding:0;" src="http://beta.yubby.com/img/project/yubby/logo.png" onclick="location.href=vidplayurl_92();">';
		html +='<img onclick="showmatrix_92(0);" style="position:absolute;left:5px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://beta.yubby.com//img/widget/solo/iconmatrix24.png" title="popup an overview with all videos"  	id="pgmatrix_92" 	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);"/>';
		html +='<img onclick="playprev_92();" style="position:absolute;left:349px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://beta.yubby.com//img/widget/solo/iconprev24.png" title="go to the previous video in the channel"  		id="pgprev_92" 	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	//html +='<img onclick="playstop_92();" style="position:absolute;left:349px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://beta.yubby.com//img/widget/solo/iconstop24.png" title="stop"  													id="pgstop_92"	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	//html +='<img onclick="playstart_92();" style="position:absolute;left:373px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://beta.yubby.com//img/widget/solo/iconplay24.png" title="play"  									id="pgplay_92"	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	// start is now a toggle
	html +='<img onclick="playstartstop_92();" style="position:absolute;left:373px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://beta.yubby.com//img/widget/solo/iconplay24.png" title="play"  									id="pgplay_92"	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	html +='<img onclick="playnext_92();" style="position:absolute;left:397px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://beta.yubby.com//img/widget/solo/iconnext24.png" title="go to the next video in the channel"  	id="pgnext_92"	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	html +='</div>';
	html+='</div>';
	wgElm_92.innerHTML=html;
	wgElm_92.style.display = 'block';
		updAllButState(); 
}

function playnext_92() {
	if (curvid_92 < cvids_92.length -1 ) {
		curvid_92++;
		if (cpvideo_92)
			playstart_92();	// we are playing video
		else {
			var thumbdiv=document.getElementById('thumb_92');
			thumbdiv.innerHTML=vidthumbhtml_92(curvid_92);
		}
	}
	updAllButState();
}
function playprev_92() {
	if (curvid_92 >0 ) {
		curvid_92--;
		if (cpvideo_92)
			playstart_92();	// we are playing video
		else {
			var thumbdiv=document.getElementById('thumb_92');
			thumbdiv.innerHTML=vidthumbhtml_92(curvid_92);
		}
	}
	updAllButState();
}

function playstart_92(vnr) {
	closepopup_92();	// close popup (if open)
	if (vnr==null)
		vnr=curvid_92;
	else
		curvid_92=vnr;	// set the current
	var thumbdiv=document.getElementById('thumb_92');
	thumbdiv.style.background='#FFF url(http://beta.yubby.com/img/spinner32.gif) no-repeat 182.5px 141.5px';
	thumbdiv.innerHTML='<iframe name="playerframe" class="playerframe" src="http://beta.yubby.com/widget/playvideo/'+cvids_92[vnr].vid+'/425/343/L/W" width="425" height="343" frameborder="0" scrolling="no" allowtransparency="true"></iframe>';
	cpvideo_92=true;
	updAllButState();
}

function playstop_92() {
	cpvideo_92=false;
	var thumbdiv=document.getElementById('thumb_92');
	thumbdiv.style.background='#FFF';
	thumbdiv.innerHTML=vidthumbhtml_92(curvid_92);
	updAllButState();
}

function playstartstop_92() {
	if (cpvideo_92) 
		playstop_92();
	else
		playstart_92();
}

function vidthumbhtml_92(vnr) {
	var html='';
	html+='<div class="v69resetstyle" style="width:415px;height:259px; overflow:hidden; position:absolute;left:5px;top:5px;">';
html+='<img src="'+cvids_92[vnr].thumb+'" style="width:415px;height:311px;top:-26px;position:relative;">';
html+='</div>';
html+='<div class="v69resetstyle" style="width:405px;height:69px;position:absolute;left:5px;top:264px;background-color:#AAA;padding:5px;"><div class="v69resetstyle" style="overflow:hidden;height:73px;width:405px;"><div class="v69resetstyle" style="margin: 2px 3px; white-space: nowrap; font-size:15px;line-height:15px;color:#555555;">'+htmlspecialchars(cvids_92[vnr].title)+'</div><div class="v69resetstyle" style="margin: 2px 5px; font-size:13px;line-height:13px;color:#ffffff;overflow:hidden;height:40px;"  title="'+htmlspecialchars(cvids_92[vnr].desc)+'">'+htmlspecialchars(cvids_92[vnr].desc)+'</div><div class="v69resetstyle" style="padding: 3px 5px; letter-spacing:1px; background-color: #aaa; color: white; position: absolute; right: 0px; top: -14px; font-size: 10px;">'+(vnr+1)+'/'+(cvids_92.length)+'</div></div></div>';
html+='<div class="v69resetstyle" style="position: absolute; width:72px;height:72px;top:135.5px;left:176.5px;z-index:200;cursor:pointer;cursor:hand;background:url(http://beta.yubby.com/img/media_play72.png) no-repeat;" onClick="playstart_92();"></div>';
	return html;
}

function vidthumbhtmlSmall_92(vnr) {
	var html='';
	html='';
	html+='<div class="v69resetstyle" style="margin: 5px; float: left; position: relative; width: 162px; height: 90px;">';
		html+='<div  class="v69resetstyle" style="width:160px;max-height:122px;background:#f6f6f6;margin:0 auto 6px auto;overflow:hidden;position:relative;">';
			html+='<div  class="v69resetstyle" style="width:156px;height:86px;background:#cccccc;border:2px solid #dedede;overflow:hidden;position:relative;">';
				html+='<img style="position:absolute;width:160px;height:119px;top:-20px;left:0;cursor: pointer;" onclick="playstart_92('+vnr+')" title="'+htmlspecialchars(cvids_92[vnr].desc)+'" src="'+cvids_92[vnr].thumb+'" />';
				html+='<div class="v69resetstyle" style="position: absolute; width:24px;height:24px;top:28px;left:68px;z-index:200;cursor:pointer;cursor:hand;background:url(http://beta.yubby.com/img/media_play24.png) no-repeat;" onclick="playstart_92('+vnr+')"></div>';
				html+='<div class="v69resetstyle" style="position: absolute; bottom: 0px; left: 0px;width:156px;height:15px;z-index:200;background-color:#dedede;color:#000000;font-size:11px;overflow:hidden;white-space: nowrap;padding:2px 5px 2px 3px;filter: alpha(opacity=80);filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);-moz-opacity: 0.80; opacity: 0.80;cursor: pointer;" onclick="playVideo_773417(15893)" >'+htmlspecialchars(cvids_92[vnr].title)+'</div>';
			html+='</div>';
		html+='</div>';
	html+='</div>';
	return html;
}

// cp 1..npages
function paginationhtml_92(cp,npages) {
	if (npages<=1)
		return '';	// empty if no pagination..
	var html='';
	html+='<div class="pages v69resetstyle">';
	if (cp>1) {
		// we CAN prev!
		html+= '<span class="pageblock" onclick="gotopage_92('+(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_92('+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_92('+(cp+1)+');">Next &#187;</span>';
	else
		html+='<span class="pageblock_disabled">Next &#187;</span>';
	html+='</div>';
	return html;
}

function vidplayurl_92(vnr) {
	if (vnr==null)
		vnr=curvid_92;
	return 'http://beta.yubby.com/channel/player/2588/'+cvids_92[vnr].vid;
}

//------------------------------------ button handlers --------------------------------------
function stButImg(oBut) {
	if (oBut.id == 'pgnext_92') { 
		if (curvid_92 >= cvids_92.length -1 ) 
			oBut.src = imgNext_d.src;
		else
			oBut.src= butnext_mousein ? imgNext_ov.src : imgNext_ou.src;
	}
	if (oBut.id == 'pgprev_92') { 
		if (curvid_92==0 ) 
			oBut.src = imgPrev_d.src;
		else
			oBut.src= butprev_mousein ? imgPrev_ov.src : imgPrev_ou.src;
	}
	if (oBut.id == 'pgplay_92') { 
		if (cpvideo_92) 	// we are currently playing
			oBut.src = butplay_mousein ? imgStop_ov.src : imgStop_ou.src;
		else
			oBut.src= butplay_mousein ? imgPlay_ov.src : imgPlay_ou.src;
	}
	// if (oBut.id == 'pgstop_92') { 
	// 	if (!cpvideo_92 ) 	// currently NOT playing
	// 		oBut.src = imgStop_ov.src;
	// 	else
	// 		oBut.src= butstop_mousein ? imgStop_ov.src : imgStop_ou.src;
	// }
	if (oBut.id == 'pgmatrix_92') { 
		oBut.src= butmatrix_mousein ? imgMatrix_ov.src : imgMatrix_ou.src;
	}
}

function oMouEv(oBut,mouseIn) {
	
	if (oBut.id == 'pgnext_92') 
		butnext_mousein=mouseIn;
	if (oBut.id == 'pgprev_92') 
		butprev_mousein=mouseIn;
	if (oBut.id == 'pgplay_92') 
		butplay_mousein=mouseIn;
	// if (oBut.id == 'pgstop_92') 
	// 	butstop_mousein=mouseIn;
	if (oBut.id == 'pgmatrix_92') 
		butmatrix_mousein=mouseIn;
	stButImg(oBut);
}

function updAllButState() {
	el = document.getElementById('pgnext_92');
	if (el) 
		stButImg(el); // update nextbutton state

	el = document.getElementById('pgprev_92');
	if (el) 
		stButImg(el); // update prevbutton state
		
	el = document.getElementById('pgplay_92');
	if (el) 
		stButImg(el); // update prevbutton state
		
	// el = document.getElementById('pgstop_92');
	// if (el) 
	// 	stButImg(el); // update prevbutton state

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

//------------------------------------ other stuff -------------
// 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_92() {
  el = document.getElementById('ipopup_92');
  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;
}

function gotopage_92(pg) {
	if (pg<1)
		pg=1;
	if (matrix_npages<1)
		matrix_npages=1;
	if (pg>matrix_npages) 
		pg=matrix_npages;
		
	matrix_curpg=pg;
	var mxs=document.getElementById('mxs_92');
	var html='';
	for (var i=(matrix_curpg-1)*16,cv=0;i<cvids_92.length && cv<16;i++) {
		html+=  vidthumbhtmlSmall_92(i);
		cv++;
	}
	html+=  '<div class="v69resetstyle" style="clear:both;"></div>';
	if (matrix_npages>1) {
		html+=  '<div  class="v69resetstyle" style="margin:10px 0px">'+paginationhtml_92(matrix_curpg, matrix_npages)+'</div>';
	}

	mxs.innerHTML=html;
}

function showmatrix_92() {
	// close old one
	closepopup_92();

	matrix_npages= Math.ceil(cvids_92.length / 16);
	
	// open new
	var popup_div = document.createElement('div');
	var title='matrix';
	popup_div.id = "ipopup_92";
	popup_div.style.position = 'absolute';
	popup_div.style.border = 'none';
	popup_div.className = "v69resetstyle";

	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 class="v69resetstyle" 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 class="v69resetstyle" onclick="closepopup_92();" style="position:absolute;top:7px;right:8px;cursor:pointer;cursor:hand;background:url(http://beta.yubby.com/img/icon_bw_close22.png) no-repeat;width:24px;height:24px;z-index:10000;"></div>';
	vid_html+=	'<div class="v69resetstyle" style="position:absolute;top:8px;left:15px;color:#888;font-size:15px;overflow:hidden;width:'+(base_width-50)+'px;">Amazing videos period</div>';
	vid_html+=	'<div class="v69resetstyle" style="margin:30px 10px 10px 10px;" id="mxs_92">';
	// for (var i=0,cv=0;i<cvids_92.length && cv<16;i++) { 
	// 		vid_html+=  vidthumbhtmlSmall_92(i);
	// 		cv++;
	// 	}
	// 	vid_html+=  '<div style="clear:both;"></div>';
	// 
	// 	if (matrix_npages>1) {
	// 		vid_html+=  '<div style="margin:10px 0px">'+paginationhtml_92(matrix_curpg, matrix_npages)+'</div>';
	// 	}
	vid_html+=	'</div>';
	vid_html+=  '<div class="v69resetstyle" style="clear:both;"></div>';
	vid_html+='</div>';
					
	popup_div.innerHTML=vid_html;
	document.body.appendChild(popup_div);
	gotopage_92(matrix_curpg);
}

// 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 + '"';
}



