//solo.js for channel 391 / widget 196713 / WxH: 440x382 / skin: clean / vid: 0 / 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://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();
var isIE = /MSIE ((5\.5)|[6])/.test(navigator.userAgent) && navigator.platform == "Win32";

var cvids_196713= new Array();	// channelvideo's
var curvid_196713=0;			// first video
var cpvideo_196713=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://www.yubby.com//img/widget/solo/iconnext24ov.png";
imgNext_ou.src="http://www.yubby.com//img/widget/solo/iconnext24.png";
imgNext_d.src ="http://www.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://www.yubby.com//img/widget/solo/iconprev24ov.png";
imgPrev_ou.src="http://www.yubby.com//img/widget/solo/iconprev24.png";
imgPrev_d.src ="http://www.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://www.yubby.com//img/widget/solo/iconplay24ov.png";
imgPlay_ou.src="http://www.yubby.com//img/widget/solo/iconplay24.png";
imgPlay_d.src ="http://www.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://www.yubby.com//img/widget/solo/iconstop24ov.png";
imgStop_ou.src="http://www.yubby.com//img/widget/solo/iconstop24.png";
imgStop_d.src ="http://www.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://www.yubby.com//img/widget/solo/iconmatrix24ov.png";
imgMatrix_ou.src="http://www.yubby.com//img/widget/solo/iconmatrix24.png";
imgMatrix_d.src ="http://www.yubby.com//img/widget/solo/iconmatrix24d.png";

var wgElm_196713 = document.getElementById('viidoo_solo_196713');
if (wgElm_196713) {
	vp_createwg();
}

pgstats.addcollect('chid','391');
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_196713" class="widget_flash v69resetstyle" style="width: 440px;height:382px;overflow:hidden; border: 1px solid #DDDDDD;font-family:Trebuchet MS,Lucida Sans Unicode,Lucida Grande,Lucida Sans,Tahoma,Geneva,Arial,helvetica,sans-serif">';

	cvids_196713.push({vid:394083, thumb: 'http://i.ytimg.com/vi/csR8_irGfvo/0.jpg', title: 'IJslandse paarden protest', desc: 'IJslandse paarden protesteren in Baarn, (video Gooi en Eemlander)\nen brengen in optocht petitie bij gemeeente Baarn om bestemmingsplan te laten wijzigen zodat boer Evers zijn paarden kan houden.'});
	cvids_196713.push({vid:324791, thumb: 'http://i.ytimg.com/vi/wD-ayrJ6Hcg/0.jpg', title: 'Islandpferde-WM 2013 - Virtual Tour - www.berlin2013.de', desc: 'Islandpferde-WM 2013 - Virtual Tour - www.berlin2013.de'});
	cvids_196713.push({vid:324092, thumb: 'http://i.ytimg.com/vi/lJpA4fsLwuI/0.jpg', title: 'Icelandic Horses: there are No Words', desc: 'Kraftur\'s first Video Track Day held at Mountain Icelandic in California. The horses loved the chance to go forward, fast. Music is \"No Words\" by Sheltered in Sound (used with permission)'});
	cvids_196713.push({vid:307324, thumb: 'http://i.ytimg.com/vi/J1hrJXI-O7M/0.jpg', title: 'Islandpferde WM 2011 / World Championships for Icelandic Horses', desc: 'Passpr\u00fcfung PP1'});
	cvids_196713.push({vid:307323, thumb: 'http://i.ytimg.com/vi/vbPNcsgb3fg/0.jpg', title: 'Islandpferde WM 2011 / World Championships for Icelandic Horses 2011', desc: 'Tag 3\nStarter f\u00fcr Faroe Islands\nF\u00fcnfgang Vorrunde'});
	cvids_196713.push({vid:307322, thumb: 'http://i.ytimg.com/vi/e4ib5ZGo8qI/0.jpg', title: 'Islandpferde WM 2011 / World Championships for Icelandic Horses', desc: 'Tag 5\nViergang Vorrunde\nSteffi Kleis'});
	cvids_196713.push({vid:307321, thumb: 'http://i.ytimg.com/vi/ger6oiHpYKk/0.jpg', title: 'Islandpferde WM 2011 / World Championships for Icelandic Horses', desc: 'Tag 7 Zuchtpr\u00e4sentation der Hengste'});
	cvids_196713.push({vid:307318, thumb: 'http://i.ytimg.com/vi/7zBNI0f8lIU/0.jpg', title: 'Islandpferde WM 2011 / World Championships for Icelandic Horses', desc: 'Passrennen 250m'});
	cvids_196713.push({vid:307317, thumb: 'http://i.ytimg.com/vi/XTANfblgNHc/0.jpg', title: 'Islandpferde WM 2011 / World Championships for Icelandic Horses', desc: 'PP1'});
	cvids_196713.push({vid:304392, thumb: 'http://i.ytimg.com/vi/Cp8RKLfz1-M/0.jpg', title: 'Iceland in March 2009', desc: ''});
	cvids_196713.push({vid:299944, thumb: 'http://i.ytimg.com/vi/-dTOg9uzxio/0.jpg', title: 'Islandpferde WM 2011 / World Championships for Icelandic Horses 2011', desc: 'Tag 3 \nSamantha Leidesdorff mit\nCasanova von Hrafnsholt\nDenkmark'});
	cvids_196713.push({vid:299935, thumb: 'http://i.ytimg.com/vi/AveInKFpdZ4/0.jpg', title: 'Islandpferde WM 2011 / World Championships for Icelandic Horses 2011', desc: 'Tag 3\nVorentscheidung im F\u00fcnfgang\nStarterin f\u00fcr Holland'});
	cvids_196713.push({vid:299934, thumb: 'http://i.ytimg.com/vi/Vtk-BaGkkWM/0.jpg', title: 'Islandpferde WM 2011/ World Championships for Icelandic Horses 2011', desc: 'Geb\u00e4udebeurteilung Stuten'});
	cvids_196713.push({vid:299931, thumb: 'http://i.ytimg.com/vi/CDec4jqMBlU/0.jpg', title: 'Islandpferde WM 2011 Tag 2/ World Championships for Icelandic Horses 2011', desc: 'Reiteigenschaten Stuten'});
	cvids_196713.push({vid:299928, thumb: 'http://i.ytimg.com/vi/1l0-c7EYjX8/0.jpg', title: 'Globus fr\u00e1 Jakobsgarden Islandpferde WM2011', desc: 'Geb\u00e4udebeurteilung von Globus. Vater Jarl fr\u00e1 Midrika'});
	cvids_196713.push({vid:288723, thumb: 'http://i.ytimg.com/vi/9I05zQxWYOo/0.jpg', title: 'T1 - Piet Hoyos', desc: ''});
	cvids_196713.push({vid:288722, thumb: 'http://i.ytimg.com/vi/COgt84GNKBc/0.jpg', title: 'News - World Championships of Icelandic Horses 2011', desc: '3.8.2011'});
	cvids_196713.push({vid:286977, thumb: 'http://i.ytimg.com/vi/N6gKAPrn-sc/0.jpg', title: 'VID00806', desc: ''});
	cvids_196713.push({vid:286976, thumb: 'http://i.ytimg.com/vi/OkSe9OwXfJs/0.jpg', title: 'World Championship Title - SpeedPass: Tania H. Olsen.MP4', desc: ''});
	cvids_196713.push({vid:286938, thumb: 'http://i.ytimg.com/vi/KC1-UNtdYlU/0.jpg', title: 'Winner of A-final: Anne Stine Haugen.MP4', desc: ''});
	cvids_196713.push({vid:286937, thumb: 'http://i.ytimg.com/vi/OtHLjHPL2mM/0.jpg', title: 'VID00792', desc: ''});
	cvids_196713.push({vid:286936, thumb: 'http://i.ytimg.com/vi/x5O_BmFTSco/0.jpg', title: 'World Champion F1 - Markus Skulason.MP4', desc: ''});
	cvids_196713.push({vid:286933, thumb: 'http://i.ytimg.com/vi/ElMtohG7cys/0.jpg', title: 'WM 2011 V1 VE Marleen St\u00fchler auf Baldur v. Sonnenreiter', desc: 'Created on August 5, 2011 using FlipShare.'});
	cvids_196713.push({vid:286932, thumb: 'http://i.ytimg.com/vi/pGMT8idS0Aw/0.jpg', title: 'WM 2011 T2 B-Finale Steffi Kleis auf Darri v. Lipperthof', desc: 'Created on August 6, 2011 using FlipShare.'});
	cvids_196713.push({vid:286930, thumb: 'http://i.ytimg.com/vi/QrQqDmFQdPM/0.jpg', title: 'WM 2011 - B-Final T1 - www.isibless.de', desc: ''});
	cvids_196713.push({vid:286450, thumb: 'http://i.ytimg.com/vi/of2GmteiuXU/0.jpg', title: 'VID00785', desc: ''});
	cvids_196713.push({vid:286449, thumb: 'http://i.ytimg.com/vi/wBFRlOGtT-c/0.jpg', title: 'Winner B-Final: Vida Ingolfson.MP4', desc: ''});
	cvids_196713.push({vid:286448, thumb: 'http://i.ytimg.com/vi/DHdLeu_W6d4/0.jpg', title: 'Winner B-Final T2: Linda Antonsson .MP4', desc: ''});
	cvids_196713.push({vid:286408, thumb: 'http://i.ytimg.com/vi/orelu1c3PRs/0.jpg', title: 'World Champion (Pace Race 250m) - Eggertson (IS).MP4', desc: ''});
	cvids_196713.push({vid:286402, thumb: 'http://i.ytimg.com/vi/377CQlxtcls/0.jpg', title: 'Winner B-Final: Magnus Skulason (SE)', desc: ''});
	cvids_196713.push({vid:286401, thumb: 'http://i.ytimg.com/vi/AgolBZMQXXQ/0.jpg', title: 'VID00775', desc: ''});
	cvids_196713.push({vid:285241, thumb: 'http://i.ytimg.com/vi/d91wYBeWC6o/0.jpg', title: 'Gold Medal for Sigur\u00f0ur Marinusson and Eilimi vom Lindenhof.MP4', desc: ''});
	cvids_196713.push({vid:285176, thumb: 'http://i.ytimg.com/vi/7eFf4dgw4_c/0.jpg', title: 'WM 2011 - Passpr\u00fcfung PP1 - www.isibless.de', desc: 'WM 2011 - Passpr\u00fcfung PP1 - www.isibless.de'});
	cvids_196713.push({vid:284976, thumb: 'http://i.ytimg.com/vi/fyCr49nDZBw/0.jpg', title: 'WM 2011 - Dennis im Regen - www.isibless.de', desc: 'WM 2011 - Dennis im Regen - www.isibless.de'});
	cvids_196713.push({vid:284966, thumb: 'http://i.ytimg.com/vi/r0ovEjfVN2s/0.jpg', title: 'WM 2011 - Teigur vom Kronshof - www.isibless.de', desc: 'WM 2011 - Teigur vom Kronshof - www.isibless.de'});
	cvids_196713.push({vid:284932, thumb: 'http://i.ytimg.com/vi/NT9dxINHGyk/0.jpg', title: 'WM 2011 - Julie Christiansen \& \u00d6rn T1 - www.isibless.de', desc: 'WM 2011 - Julie Christiansen \& \u00d6rn T1 - www.isibless.de'});
	cvids_196713.push({vid:284930, thumb: 'http://i.ytimg.com/vi/65DpEeHu5lA/0.jpg', title: 'WM 2011 - T1 Hinrik Bragason - www.isibless.de', desc: 'WM 2011 - T1 Hinrik Bragason - www.isibless.de'});
	cvids_196713.push({vid:284922, thumb: 'http://i.ytimg.com/vi/jSeGoXaay3Y/0.jpg', title: 'WM 2011 - T1 Johanna Beuk - www.isibless.de', desc: 'WM 2011 - T1 Johanna Beuk - www.isibless.de'});
	cvids_196713.push({vid:284901, thumb: 'http://i.ytimg.com/vi/eitLxZDBXE4/0.jpg', title: 'WM 2011 - T1 Karly Zingsheim - www.isibless.de', desc: 'WM 2011 - T1 Karly Zingsheim - www.isibless.de'});
	cvids_196713.push({vid:284894, thumb: 'http://i.ytimg.com/vi/OWlDsfu2ltE/0.jpg', title: 'WM 2011 - F1 Vicky Eggertsson - www.isibless.de', desc: ''});
	cvids_196713.push({vid:284890, thumb: 'http://i.ytimg.com/vi/-mhyRLEzIrU/0.jpg', title: 'WM 2011 - V1 Frauke Schenzel - www.isibless.de', desc: ''});
	cvids_196713.push({vid:283192, thumb: 'http://i.ytimg.com/vi/N9pSxtZaASM/0.jpg', title: 'Zucht Snaedis', desc: 'Zucht Snaedis'});
	cvids_196713.push({vid:283191, thumb: 'http://i.ytimg.com/vi/Y_Sphh4iDY0/0.jpg', title: 'WM 2011 - Sm\u00e1 fr\u00e1 \u00de\u00fafu - www.isibless.de', desc: 'Zucht Sma'});
	cvids_196713.push({vid:283189, thumb: 'http://i.ytimg.com/vi/KydbZzIP2js/0.jpg', title: 'WM 2011 - Rau\u00f0hetta fr\u00e1 Kommu - www.isibless.de', desc: 'Zucht Raudhetta'});
	cvids_196713.push({vid:283188, thumb: 'http://i.ytimg.com/vi/uKURYkbrM10/0.jpg', title: 'WM 2011 - Von fr\u00e1 Vigra - www.isibless.de', desc: 'Zucht Von fr\u00e1 Vigra'});
	cvids_196713.push({vid:283187, thumb: 'http://i.ytimg.com/vi/L7zkk8hamGA/0.jpg', title: 'WM 2011 - Sprengja vom Lipperthof - www.isibless.de', desc: 'Zucht Sprengja'});
	cvids_196713.push({vid:283186, thumb: 'http://i.ytimg.com/vi/NUfsiFXCLcc/0.jpg', title: 'WM 2011 - T2 Steffi Kleis - www.isibless.de', desc: 'T2 Steffi Kleis'});
	cvids_196713.push({vid:283185, thumb: 'http://i.ytimg.com/vi/Qp62Qno1fTg/0.jpg', title: 'WM 2011 - T2 Samantha Leidesdorff - www.isibless.de', desc: 'T2 Samantha Leidesdorff'});
	cvids_196713.push({vid:282790, thumb: 'http://i.ytimg.com/vi/zwB67mwjo8A/0.jpg', title: 'WM 2011 - T2 Linda Antonsson - www.isibless.de', desc: 'T2 Linda Antonsson'});
	cvids_196713.push({vid:282786, thumb: 'http://i.ytimg.com/vi/OCjoPcpouXc/0.jpg', title: 'WM 2011 - T2 Eyjo\u0301lfur \u00deorsteinsson - www.isibless.de', desc: 'WM 2011 - T2 Eyjo\u0301lfur \u00deorsteinsson - www.isibless.de'});
	cvids_196713.push({vid:282784, thumb: 'http://i.ytimg.com/vi/pZjBtcTbzRk/0.jpg', title: 'WM 2011 - T2 Tina Kalmo Pedersen - www.isibless.de', desc: ''});
	cvids_196713.push({vid:282783, thumb: 'http://i.ytimg.com/vi/Rjko2A5BQNY/0.jpg', title: 'WM 2011 - T2 R\u00fana Einarsd\u00f3ttir-Zingsheim - isibless', desc: 'WM 2011 - T2 R\u00fana Einarsd\u00f3ttir-Zingsheim - isibless'});
	cvids_196713.push({vid:282576, thumb: 'http://i.ytimg.com/vi/0WfZQ24JMiM/0.jpg', title: 'News - World Championships of Icelandic Horses 2011', desc: '29.7.2011'});
	cvids_196713.push({vid:281716, thumb: 'http://i.ytimg.com/vi/8j_bo7J8rEY/0.jpg', title: 'WM 2011 - Trainings-Impressionen 30.07. - www.isibless.de', desc: 'WM 2011 - Trainings-Impressionen 30.07. - www.isibless.de'});
	cvids_196713.push({vid:281222, thumb: 'http://i.ytimg.com/vi/3cIXbDoJUMk/0.jpg', title: 'Islandpferde WM 2011', desc: 'August 2011 ist St. Radegund / Ober\u00f6sterreich'});
	cvids_196713.push({vid:281217, thumb: 'http://i.ytimg.com/vi/zA7vFPNjCKo/0.jpg', title: 'Free training - World Championships of Icelandic Horses 2011', desc: '29.7.2011'});
	cvids_196713.push({vid:269496, thumb: 'http://i.ytimg.com/vi/YjP3AgK6aOg/0.jpg', title: 'DIM Zucht 2011', desc: 'Diese Pferde sind in den letzten Jahren bei uns geboren und konnten in der WM-Auswahlrunde anl\u00e4sslich der DIM 2011 gute Note erzielen. Andvari vom St\u00f6rtal, Andvaka vom St\u00f6rtal und Svarta-S\u00f3l vom Heesberg'});
	cvids_196713.push({vid:269495, thumb: 'http://i.ytimg.com/vi/XGiPXLGwMI4/0.jpg', title: 'DIM 2011 - Steffi \& Darri T2 - www.isibless.de', desc: 'DIM 2011 - Steffi Kleis \& Darri vom Lipperthof T2 - www.isibless.de'});
	cvids_196713.push({vid:269494, thumb: 'http://i.ytimg.com/vi/2_t7qP662EY/0.jpg', title: 'DIM 2011 - Frauke \& T\u00edgull V1 - www.isibless.de', desc: 'DIM 2011 - Frauke Schenzel \& T\u00edgull vom Kronshof V1 - www.isibless.de'});
	cvids_196713.push({vid:269493, thumb: 'http://i.ytimg.com/vi/08blHriX4zE/0.jpg', title: 'DIM 2011 - Karly \& Dagur T1 - www.isibless.de', desc: 'DIM 2011 - Karly Zingsheim \& Dagur T1 - www.isibless.de'});
	cvids_196713.push({vid:269492, thumb: 'http://i.ytimg.com/vi/wJdKzPrSViQ/0.jpg', title: 'DIM 2011 - Haukur, D\u00f6rte, Vicky F1 - www.isibless.de', desc: 'DIM 2011 - Haukur, D\u00f6rte, Vicky F1 - www.isibless.de'});
	cvids_196713.push({vid:269491, thumb: 'http://i.ytimg.com/vi/7n-DJctcZFU/0.jpg', title: 'DIM 2011 - V1-Finale - www.isibless.de', desc: 'DIM 2011 - V1-Finale - www.isibless.de'});
	cvids_196713.push({vid:269488, thumb: 'http://i.ytimg.com/vi/VCMmISfjyV4/0.jpg', title: 'DIM 2011 - T2-Finale - www.isibless.de', desc: 'DIM 2011 - T2-Finale - www.isibless.de'});
	cvids_196713.push({vid:269059, thumb: 'http://i.ytimg.com/vi/Zcgk7g8Ou5A/0.jpg', title: 'The Art of Being, practiced by horses', desc: 'July 6th, 2011\n\nImages of my herd of seven Icelandic horses sharing space, dozing, enjoying each other\'s company, just being in the Here and Now.\nIf we share time and space with our horses like they do with each other, it will bring us peace of mind, harmony, balance and a bond with our horses, that goes far beyond words.\n\nIf you want to know more about sharing territory and other ways of being and working with horses in a peaceful way, go to http://www.carolynresnickblog.com .'});
	cvids_196713.push({vid:259542, thumb: 'http://i.ytimg.com/vi/lk91KFJQr10/0.jpg', title: 'To\u0308lt A u\u0301rslit LM 2011', desc: ''});
	cvids_196713.push({vid:259530, thumb: 'http://i.ytimg.com/vi/wTRuuspYNn4/0.jpg', title: 'Landsm\u00f3t 2011 - T1-VE Teil 2 - www.isibless.de', desc: 'Landsm\u00f3t 2011 - T1-VE Teil 2 - www.isibless.de'});
	cvids_196713.push({vid:259529, thumb: 'http://i.ytimg.com/vi/9hewQUmihM4/0.jpg', title: 'Landsm\u00f3t 2011 - T1-VE Teil 1 - www.isibless.de', desc: 'Landsm\u00f3t 2011 - T1-VE Teil 1 - www.isibless.de'});
	cvids_196713.push({vid:259528, thumb: 'http://i.ytimg.com/vi/NbhuXqWg-bM/0.jpg', title: 'Landsm\u00f3t 2011 - 01.07. Gest\u00fctsschau 2 - isibless', desc: 'Landsm\u00f3t 2011 - 01.07. Gest\u00fctsschau 2 - isibless'});
	cvids_196713.push({vid:259527, thumb: 'http://i.ytimg.com/vi/pAY4QIKJskg/0.jpg', title: 'Landsm\u00f3t 2011 - 01.07. Gest\u00fctsschau 1 - isibless', desc: 'Landsm\u00f3t 2011 - 01.07. Gest\u00fctsschau 1 - isibless'});
	cvids_196713.push({vid:259526, thumb: 'http://i.ytimg.com/vi/gPGeD4xW8aw/0.jpg', title: 'Landsm\u00f3t 2011 - 02.07. Video 8 - isibless', desc: 'Landsm\u00f3t 2011 - 02.07. Video 8 - isibless'});
	cvids_196713.push({vid:259525, thumb: 'http://i.ytimg.com/vi/pQG-IPh5mOw/0.jpg', title: 'Landsm\u00f3t 2011 - 02.07. Video 7 - isibless', desc: 'Landsm\u00f3t 2011 - 02.07. Video 7 - isibless'});
	cvids_196713.push({vid:259524, thumb: 'http://i.ytimg.com/vi/2i4QUyMI3CE/0.jpg', title: 'Landsm\u00f3t 2011 - 27.06. Video 6 - www.isibless.de', desc: 'Landsm\u00f3t 2011 - 27.06. Video 6 - www.isibless.de'});
	cvids_196713.push({vid:259522, thumb: 'http://i.ytimg.com/vi/Sq3UVEn6YF4/0.jpg', title: 'Landsm\u00f3t 2011 - 29.06. Video 5 - www.isibless.de', desc: 'Landsm\u00f3t 2011 - 29.06. Video 5 - www.isibless.de'});
	cvids_196713.push({vid:259521, thumb: 'http://i.ytimg.com/vi/Y0VLKEIYQco/0.jpg', title: 'Landsm\u00f3t 2011 - 01.07. Video 3 - www.isibless.de', desc: 'Landsm\u00f3t 2011 - 01.07. Video 3 - www.isibless.de'});
	cvids_196713.push({vid:259520, thumb: 'http://i.ytimg.com/vi/Wd4LWfptj30/0.jpg', title: 'Landsm\u00f3t 2011 - 01.07. Video 1 - www.isibless.de', desc: 'Landsm\u00f3t 2011 - 01.07. Video 1 - www.isibless.de'});
	cvids_196713.push({vid:259519, thumb: 'http://i.ytimg.com/vi/u1yrqUgN2tE/0.jpg', title: 'Landsm\u00f3t 2011 - 30.06. Video 3 - www.isibless.de', desc: 'Landsm\u00f3t 2011 - 30.06. Video 3 - www.isibless.de'});
	cvids_196713.push({vid:259518, thumb: 'http://i.ytimg.com/vi/QHkQVZz35tw/0.jpg', title: 'Landsm\u00f3t 2011 - 03.07. Video 1 - isibless', desc: 'Landsm\u00f3t 2011 - 03.07. Video 1 - isibless'});
	cvids_196713.push({vid:234423, thumb: 'http://i.ytimg.com/vi/RRRIybGuZ7I/0.jpg', title: 'Kjarni 2011 - Samantha Leidesdorff \& Skv\u00edsa T2 - www.isibless.de', desc: 'Kjarni 2011 - Samantha Leidesdorff \& Skv\u00edsa T2 - www.isibless.de'});
	cvids_196713.push({vid:234422, thumb: 'http://i.ytimg.com/vi/ZWO5OHoIgU8/0.jpg', title: 'Kjarni 2011 - Dorte Rasmussen \& Gumi T1 - www.isibless.de', desc: 'Kjarni 2011 - Dorte Rasmussen \& Gumi T1 - www.isibless.de'});
	cvids_196713.push({vid:234420, thumb: 'http://i.ytimg.com/vi/Y54jucgOAW0/0.jpg', title: '\u00d6rn fra Grimshusum, OD11T1', desc: '\u00d6rn fra Grimshusum - Ellen Pedersen: \nWorld Cup Odense (DK) 2011  \nT1 Preliminary 6,93  \nwww.lalendi.nl'});
	cvids_196713.push({vid:234419, thumb: 'http://i.ytimg.com/vi/ZnMkSmAK__U/0.jpg', title: 'H\u00e1rekur fra Vindasi, OD11T1', desc: 'H\u00e1rekur fra Vindasi - Oda Ugland: \nWorld Cup Odense (DK) 2011  \nT1 Preliminary 6,53  \nwww.lalendi.nl'});
	cvids_196713.push({vid:234418, thumb: 'http://i.ytimg.com/vi/WtFekojS_0g/0.jpg', title: 'Hvinur fra holtsmula, OD11T1', desc: 'Hvinur fra holtsmula - Elise Lundhaug: \nWorld Cup Odense (DK) 2011  \nT1 Preliminary 7,07    \nwww.lalendi.nl'});
	cvids_196713.push({vid:234417, thumb: 'http://i.ytimg.com/vi/Y34F1EUBnM4/0.jpg', title: 'Kormakur vom Lipperthof, OD11T1', desc: 'Kormakur vom Lipperthof - Steffi Kleis: \nWorld Cup Odense (DK) 2011  \nT1 Preliminary 6,83     \nwww.lalendi.nl'});
	cvids_196713.push({vid:234416, thumb: 'http://i.ytimg.com/vi/lLWPqTHCjGI/0.jpg', title: 'Kristall fr\u00e1 Jar\u00f0br\u00fa, OD11T1', desc: 'Kristall fr\u00e1 Jar\u00f0br\u00fa - Elias Arnason: \nWorld Cup Odense (DK) 2011  \nT1 Preliminary 6,77  \nwww.lalendi.nl'});
	cvids_196713.push({vid:234415, thumb: 'http://i.ytimg.com/vi/77qTVdjn-Ew/0.jpg', title: 'Kristall fra Jardbru, OD11Breeding', desc: 'Kristall fra Jardbru - Elias Arnason: \nWorld Cup Odense (DK) 2011  \nBreedingshow   \nwww.lalendi.nl'});
	cvids_196713.push({vid:234414, thumb: 'http://i.ytimg.com/vi/VFutAON-ryQ/0.jpg', title: 'V\u00e1r fr\u00e1 Vestra-F\u00edflholti, OD11Breeding', desc: 'V\u00e1r fr\u00e1 Vestra-F\u00edflholti - Marianne Larsen: \nWorld Cup Odense (DK) 2011  \nBreedingshow   \nwww.lalendi.nl'});
	cvids_196713.push({vid:234413, thumb: 'http://i.ytimg.com/vi/5MvVTDZ7i8k/0.jpg', title: 'V\u00e6ngur fra Audsholtshjaleigu, OD11Breeding', desc: 'V\u00e6ngur fra Audsholtshjaleigu - Sine Hansen: \nWorld Cup Odense (DK) 2011  \nBreedingshow   \nwww.lalendi.nl'});
	cvids_196713.push({vid:234412, thumb: 'http://i.ytimg.com/vi/HrAOz7_6c_o/0.jpg', title: 'Silfurgeisli fra fellskoti, OD11Breeding', desc: 'Silfurgeisli fra fellskoti - Trine Risvang: \nWorld Cup Odense (DK) 2011  \nBreedingshow   \nwww.lalendi.nl'});
	cvids_196713.push({vid:234411, thumb: 'http://i.ytimg.com/vi/wdhl689XxQ0/0.jpg', title: 'S\u00f3lnes fr\u00e1 Ytra-Sk\u00f6r\u00f0ugili, OD11Breeding', desc: 'S\u00f3lnes fr\u00e1 Ytra-Sk\u00f6r\u00f0ugili - Rasmus M\u00f8ller Jensen: \nWorld Cup Odense (DK) 2011  \nBreedingshow   \nwww.lalendi.nl'});
	cvids_196713.push({vid:234410, thumb: 'http://i.ytimg.com/vi/K2j_gLThMxI/0.jpg', title: 'Meistari fr\u00e1 Vestri-Leir\u00e1rg\u00f6r\u00f0um, OD11Breeding', desc: 'Meistari fr\u00e1 Vestri-Leir\u00e1rg\u00f6r\u00f0um - Kristian J\u00f8rgensen: \nWorld Cup Odense (DK) 2011  \nBreedingshow   \nwww.lalendi.nl'});
	cvids_196713.push({vid:234409, thumb: 'http://i.ytimg.com/vi/Mcl4j0o2ep0/0.jpg', title: '\u00cdsak fra Efra-Langholti, OD11Breeding', desc: '\u00cdsak fra Efra-Langholti - Gulla Gudnadottir: \nWorld Cup Odense (DK) 2011  \nBreedingshow   \nwww.lalendi.nl'});
	cvids_196713.push({vid:234408, thumb: 'http://i.ytimg.com/vi/m2hIHxZmjwc/0.jpg', title: 'H\u00e6ringur fra Litla-Kambi, OD11Breeding', desc: 'H\u00e6ringur fra Litla-Kambi - S\u00f8ren Madsen: \nWorld Cup Odense (DK) 2011  \nBreedingshow   \nwww.lalendi.nl'});
	cvids_196713.push({vid:234407, thumb: 'http://i.ytimg.com/vi/9--RKGa4NJ0/0.jpg', title: 'H\u00e6ringur WC2011.avi', desc: 'H\u00e6ringur til World Cup Odense 2011'});
	cvids_196713.push({vid:234406, thumb: 'http://i.ytimg.com/vi/8Q1NL-3gf8U/0.jpg', title: 'H\u00e6ringur p\u00e5 Island.avi', desc: 'H\u00e6ringur p\u00e5 Island aug 2009'});
	cvids_196713.push({vid:232325, thumb: 'http://i.ytimg.com/vi/ru4xmOMfiHM/0.jpg', title: 'Icelandic horse jumps 120 cm', desc: 'Loose jumping my icelandic horse Jarpur. Please subscribe, it would be nice. Not getting any kind of response is boring..'});
	cvids_196713.push({vid:228427, thumb: 'http://i.ytimg.com/vi/Lj4PyRI-aNY/0.jpg', title: 'IJslandse paarden 1', desc: 'IJslandse paarden in de Groesplaat bij Woudrichem'});
	cvids_196713.push({vid:225947, thumb: 'http://i.ytimg.com/vi/lyeNqKht_aY/0.jpg', title: 'isibless - \u00de\u00f3r\u00f0ur \u00deorgeirsson - Video-Impressionen - akurgerdi.is', desc: 'Video-Impressionen von \u00de\u00f3r\u00f0ur \u00deorgeirsson \"at work\" - (C) akurgerdi.is / benmedia.is'});
	cvids_196713.push({vid:225324, thumb: 'http://i.ytimg.com/vi/_n7ivivLu7Q/0.jpg', title: 'V1 finale Worldcup Odense 2011', desc: 'Icelandic Horses, Worldcup 2011 Odense (DK) V1 finals; 27-02-2011 \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:225042, thumb: 'http://i.ytimg.com/vi/eBfbFn29EvA/0.jpg', title: 'Su\u00f0ri', desc: 'Downloaded from Hestarfrettir.is\n\nSudri-lilbuinn.'});
	cvids_196713.push({vid:224530, thumb: 'http://i.ytimg.com/vi/ni-HJm1m6gQ/0.jpg', title: 'Sikill fr\u00e1 Sper\u00f0li, DIM10V1', desc: 'Sikill fr\u00e1 Sper\u00f0li - Katharina Fritsch: \nDeutsche Islandpferde Meisterschaften 2010, Lingen. \nPreliminary 6,63.  m2ts. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:224515, thumb: 'http://i.ytimg.com/vi/TFgq_PQQ4lk/0.jpg', title: '\u00der\u00e1r fra Wetsinghe, DIM10V1', desc: '\u00der\u00e1r fra Wetsinghe - Frauke Schenzel: \nDeutsche Islandpferde Meisterschaften 2010, Lingen. \nPreliminary 6,27. m2ts. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:224511, thumb: 'http://i.ytimg.com/vi/4fXsEv7AVOE/0.jpg', title: 'Stj\u00f6rn vom Eifelhaus, DIM10V1', desc: 'Stj\u00f6rn vom Eifelhaus - Lena Maxheimer: \nDeutsche Islandpferde Meisterschaften 2010, Lingen. \nPreliminary 6,30. m2ts. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:223293, thumb: 'http://i.ytimg.com/vi/wgeULPI57Tg/0.jpg', title: 'T1 finale Worldcup Odense 2011', desc: 'Icelandic Horses, Worldcup 2011 Odense (DK) T1 finals; 27-02-2011'});
	cvids_196713.push({vid:223249, thumb: 'http://i.ytimg.com/vi/_cSLscjQODw/0.jpg', title: 'Viktor fra Diisa, WK 2009 Breeding', desc: 'Viktor fra Diisa -- rider: J\u00f3hann R\u00fanar Sk\u00falason: \nWorld Championships 2009, Brunnadern. \nConformation: 8.48, Ridden abilities: 8.73, Total: 8.63 \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:223223, thumb: 'http://i.ytimg.com/vi/iQg22Kkhp3Y/0.jpg', title: 'Djass fra Engholm 2009', desc: 'Icelandic colt born in 2007. No shoes or prior training, just taken straight from the field.\n\nSire: Depill fr\u00e1 Votm\u00fala (8,58) u. Baldur fr\u00e1 Bakka (8,15) / Folda fr\u00e1 Votm\u00fala (7,81)\nDam: Dimm fr\u00e1 Kjarna (7,95) u. S\u00f3lon fr\u00e1 H\u00f3li (8,31) /\u00d6r fr\u00e1 Akureyri (8,00). \n\nBred by the Vemming family in Denmark, http://www.vemming.dk\n\nVideo of the colt as a foal: http://www.youtube.com/watch?v=sv0F4r84CRo'});
	cvids_196713.push({vid:223222, thumb: 'http://i.ytimg.com/vi/XYXkoA3CsOY/0.jpg', title: 'Gimsteinn fr\u00e1 Sk\u00e1ney, WC 2007 F1', desc: 'Gimsteinn fr\u00e1 Sk\u00e1ney - Jaap Groven: F1 Preliminary, position 7 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:223221, thumb: 'http://i.ytimg.com/vi/1JTzfIYvfow/0.jpg', title: 'Gimsteinn fr\u00e1 Sk\u00e1ney, WC03T1', desc: 'Gimsteinn fr\u00e1 Sk\u00e1ney - Jaap Groven: \nWorld Championships 2003, Herning. \nPreliminary 6,13. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:223203, thumb: 'http://i.ytimg.com/vi/nnIzbQSY0nQ/0.jpg', title: 'Snorri fr\u00e1 Lalendi, EX11T3', desc: 'Snorri fr\u00e1 Lalendi -- Ariadne R\u00fcthlein:  \n2e Indoor Exloo (Nl) 05-03-2011. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:219701, thumb: 'http://i.ytimg.com/vi/_n7ivivLu7Q/0.jpg', title: 'V1 finale Worldcup Odense 2011', desc: 'Icelandic Horses, Worldcup 2011 Odense (DK) V1 finals; 27-02-2011 Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:219700, thumb: 'http://i.ytimg.com/vi/tJ6NkYW1awY/0.jpg', title: 'F1 finale Worldcup Odense 2011', desc: 'Icelandic Horses, Worldcup 2011 Odense (DK) F1 finals; 27-02-2011 Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:219699, thumb: 'http://i.ytimg.com/vi/wgeULPI57Tg/0.jpg', title: 'T1 finale Worldcup Odense 2011', desc: 'Icelandic Horses, Worldcup 2011 Odense (DK) T1 finals; 27-02-2011'});
	cvids_196713.push({vid:219698, thumb: 'http://i.ytimg.com/vi/9nkyy8afD9w/0.jpg', title: 'T2 finale Worldcup Odense 2011', desc: 'Icelandic Horses, Worldcup 2011 Odense (DK) T2 finals; 27-02-2011 Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:219559, thumb: 'http://i.ytimg.com/vi/-wPMGhQYVN0/0.jpg', title: 'Feykir fr\u00e5n Knutshyttan, WK 2009 Breeding', desc: 'Feykir fr\u00e5n Knutshyttan -- rider: Vignir J\u00f3nasson: \nWorld Championships 2009, Brunnadern. \nConformation: 8.55, Ridden abilities: 8.24, Total: 8.37\nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:219075, thumb: 'http://i.ytimg.com/vi/lOLfeIWWUAM/0.jpg', title: 'Fast speed racking horses/flying pace Icelandic horses', desc: 'fast true racking horses and pacing Icelandic horses on ice.These people Know the differences between what a (True single foot gait is and what is the pace) the Tolt is the rack or singlefoot,there version of flying pace is what some of us Americans would call a rack or speed racking.'});
	cvids_196713.push({vid:217931, thumb: 'http://i.ytimg.com/vi/n1i8gMqbvB4/0.jpg', title: 'Horseshoe Comparison', desc: 'How does a hoof interact with different types of horseshoes, you will be surprised.'});
	cvids_196713.push({vid:216808, thumb: 'http://b.vimeocdn.com/ts/124/332/124332971_640.jpg', title: 'Iceland Winter Horses', desc: 'Some time its just good to be out on the nature and enjoy it. The Icelandic wind and cold temperature is some thing hard to fight with but you push it a little when its nice out there.   '});
	cvids_196713.push({vid:118700, thumb: 'http://i.ytimg.com/vi/rrK0Q96hC-g/0.jpg', title: 'Svalur, DIM10T1', desc: 'Svalur - Carola Bloemertz: Deutsche Islandpferde Meisterschaften 2010, Lingen. Preliminary 6,20. Muted audio. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118699, thumb: 'http://i.ytimg.com/vi/V11bGVp07K0/0.jpg', title: 'F\u00e1lki fr\u00e1 H\u00f6fn 2, DIM10T1', desc: 'F\u00e1lki fr\u00e1 H\u00f6fn 2 - Simon Feldmann: Deutsche Islandpferde Meisterschaften 2010, Lingen. Preliminary 5,73. Muted audio. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118698, thumb: 'http://i.ytimg.com/vi/B6uTVtvN8YU/0.jpg', title: 'Trausti vom Aligser Hof, DIM10T1', desc: 'Trausti vom Aligser Hof - Vanessa Soltesz-Thoms: Deutsche Islandpferde Meisterschaften 2010, Lingen. Preliminary 5,17. Muted audio. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118697, thumb: 'http://i.ytimg.com/vi/1BVIp2QtSdI/0.jpg', title: 'Magni vom Nordsternhof, DIM10T1', desc: 'Magni vom Nordsternhof - Fabienne Zimmermann: Deutsche Islandpferde Meisterschaften 2010, Lingen. Preliminary 6,67. Muted audio. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118275, thumb: 'http://i.ytimg.com/vi/brkGU06md8w/0.jpg', title: 'DIM 2010 - Frauke Schenzel F1-VE - www.isibless.de', desc: 'DIM 2010 - Frauke Schenzel in der F\u00fcnfgang-Vorentscheidung am 17.07.2010 - www.isibless.de'});
	cvids_196713.push({vid:118274, thumb: 'http://i.ytimg.com/vi/bcuj94eiCFc/0.jpg', title: 'isibless @ FIZO Berlar 2009 (Teil 2)', desc: 'Internationale Islandpferde-Materialpr\u00fcfung in Berlar, 21./22. April 2009.'});
	cvids_196713.push({vid:118273, thumb: 'http://i.ytimg.com/vi/O7oCwC7zGuc/0.jpg', title: 'DIM 2010 - Frauke \& Karly V1-VE - www.isibless.de', desc: 'DIM 2010 - Frauke Schenzel \& Karly Zingsheim in der Viergang-Vorentscheidung am 16.07.2010 - www.isibless.de'});
	cvids_196713.push({vid:118272, thumb: 'http://i.ytimg.com/vi/1VvZocpvxHY/0.jpg', title: 'DIM 2010 - T1-Finale - www.isibless.de', desc: 'DIM 2010 in Lingen: Finale im T\u00f6ltpreis T1 (www.isibless.de)'});
	cvids_196713.push({vid:118271, thumb: 'http://i.ytimg.com/vi/B6uTVtvN8YU/0.jpg', title: 'Trausti vom Aligser Hof, DIM10T1', desc: 'Trausti vom Aligser Hof - Vanessa Soltesz-Thoms: \nDeutsche Islandpferde Meisterschaften 2010, Lingen. \nPreliminary 5,17.  Muted audio.\nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118270, thumb: 'http://i.ytimg.com/vi/y0QPSLanNI0/0.jpg', title: '\u00de\u00f3r fr\u00e1 Ketu, WC09V1', desc: '\u00de\u00f3r fr\u00e1 Ketu - Mia Eckhoff: \nWorld Championships 2009, Brunnadern. \nPreliminary 5,97. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118269, thumb: 'http://i.ytimg.com/vi/_xV3R5FRznU/0.jpg', title: 'Reyr fr\u00e1 Dalb\u00e6, WC09V1', desc: 'Reyr fr\u00e1 Dalb\u00e6 - Nils Christian Larsen: \nWorld Championships 2009, Brunnadern. \nPreliminary 7,43. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118268, thumb: 'http://i.ytimg.com/vi/b_quIdSD0bg/0.jpg', title: 'Frami fr\u00e1 Hrafnsholt, DIM10T1', desc: 'Frami fr\u00e1 Hrafnsholt - Samantha Leidesdorff: \nDeutsche Islandpferde Meisterschaften 2010, Lingen. \nPreliminary 5,97.  Muted audio. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118267, thumb: 'http://i.ytimg.com/vi/H0nXYvqfNrs/0.jpg', title: 'Listi von Lonnig, DIM10T1', desc: 'Listi von Lonnig - Walter Feldmann: \nDeutsche Islandpferde Meisterschaften 2010, Lingen. \nPreliminary 6,80. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118266, thumb: 'http://i.ytimg.com/vi/eSdYu9Q2Sec/0.jpg', title: 'Nykur fr\u00e1 H\u00edtarnesi, DIM10T1', desc: 'Nykur fr\u00e1 H\u00edtarnesi - Arja Schuurmans: \nDeutsche Islandpferde Meisterschaften 2010, Lingen. \nPreliminary 5,23. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118265, thumb: 'http://i.ytimg.com/vi/aALgcnMuVEo/0.jpg', title: 'Brj\u00e1nn fr\u00e1 Reykjav\u00edk, DIM10T1', desc: 'Brj\u00e1nn fr\u00e1 Reykjav\u00edk - Irene Reber: \nDeutsche Islandpferde Meisterschaften 2010, Lingen. \nPreliminary 6,80. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118261, thumb: 'http://i.ytimg.com/vi/b_quIdSD0bg/0.jpg', title: 'Frami fr\u00e1 Hrafnsholt, DIM10T1', desc: 'Frami fr\u00e1 Hrafnsholt - Samantha Leidesdorff: Deutsche Islandpferde Meisterschaften 2010, Lingen. Preliminary 5,97. Muted audio. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118259, thumb: 'http://i.ytimg.com/vi/H0nXYvqfNrs/0.jpg', title: 'Listi von Lonnig, DIM10T1', desc: 'Listi von Lonnig - Walter Feldmann: Deutsche Islandpferde Meisterschaften 2010, Lingen. Preliminary 6,80. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118258, thumb: 'http://i.ytimg.com/vi/eSdYu9Q2Sec/0.jpg', title: 'Nykur fr\u00e1 H\u00edtarnesi, DIM10T1', desc: 'Nykur fr\u00e1 H\u00edtarnesi - Arja Schuurmans: Deutsche Islandpferde Meisterschaften 2010, Lingen. Preliminary 5,23. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118257, thumb: 'http://i.ytimg.com/vi/fqXlLcohzj8/0.jpg', title: 'Dagur, DIM10T1', desc: 'Dagur - Karly Zingsheim: Deutsche Islandpferde Meisterschaften 2010, Lingen. Preliminary 8,23. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118256, thumb: 'http://i.ytimg.com/vi/aALgcnMuVEo/0.jpg', title: 'Brj\u00e1nn fr\u00e1 Reykjav\u00edk, DIM10T1', desc: 'Brj\u00e1nn fr\u00e1 Reykjav\u00edk - Irene Reber: Deutsche Islandpferde Meisterschaften 2010, Lingen. Preliminary 6,80. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118206, thumb: 'http://i.ytimg.com/vi/SXILtlNeNcU/0.jpg', title: 'Eurom\u00f3t 2010 - 7.5. - 2/2 - www.isibless.de', desc: 'Eurom\u00f3t 2010 - 7.5. - 2/2 - www.isibless.de'});
	cvids_196713.push({vid:118205, thumb: 'http://i.ytimg.com/vi/A7pXaL_bK30/0.jpg', title: 'Eurom\u00f3t 2010 - T2-VE - www.isibless.de', desc: 'Eurom\u00f3t 2010 - T2-VE - www.isibless.de'});
	cvids_196713.push({vid:118199, thumb: 'http://i.ytimg.com/vi/tEnlPFvRTGU/0.jpg', title: 'Monty Roberts and Lauki, Icelandic horse', desc: 'http://www.montyroberts.com/newsletter_signup.html. This video clip shows Lauki, an Islandic horse who is hard to catch. World-renowned horse trainer Monty Roberts works with Lauki in Denmark.'});
	cvids_196713.push({vid:118198, thumb: 'http://i.ytimg.com/vi/GZqXF5KbgCs/0.jpg', title: 'Eldur fr\u00e1 Bessasta\u00f0ager\u00f0i', desc: 'Eldur fr\u00e1 Bessasta\u00f0ager\u00f0i, four gaited icelandic horse for sale. Well trained and good spirit'});
	cvids_196713.push({vid:118197, thumb: 'http://i.ytimg.com/vi/lyeNqKht_aY/0.jpg', title: 'isibless - \u00de\u00f3r\u00f0ur \u00deorgeirsson - Video-Impressionen - akurgerdi.is', desc: 'Video-Impressionen von \u00de\u00f3r\u00f0ur \u00deorgeirsson \"at work\" - (C) akurgerdi.is / benmedia.is'});
	cvids_196713.push({vid:118120, thumb: 'http://i.ytimg.com/vi/dwKFCAJ-B4s/0.jpg', title: 'Dynjandi fr\u00e1 Dalv\u00edk, WC09V1', desc: 'Dynjandi fr\u00e1 Dalv\u00edk - \u00c1sta D. Bjarnad\u00f3ttir-Covert: \nWorld Championships 2009, Brunnadern. \nPreliminary 7,60. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118119, thumb: 'http://i.ytimg.com/vi/5_i62k23FwE/0.jpg', title: 'Embla fr\u00e5n Smedjeg\u00e5rden, WC09V1', desc: 'Embla fr\u00e5n Smedjeg\u00e5rden - Jan Berntsson: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,50. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118118, thumb: 'http://i.ytimg.com/vi/21Fvj0Th0Sc/0.jpg', title: 'Gandur von Igelsburg, WC09V1', desc: 'Gandur von Igelsburg - Jolly Schrenk: \nWorld Championships 2009, Brunnadern. \nPreliminary 7,33. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118117, thumb: 'http://i.ytimg.com/vi/-CMOU6D1C44/0.jpg', title: 'G\u00e1ski van Hestalund, WC09V1', desc: 'G\u00e1ski van Hestalund - Arja Schuurmans: \nWorld Championships 2009, Brunnadern. \nPreliminary 5,50. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118116, thumb: 'http://i.ytimg.com/vi/W5p8h6KKLeY/0.jpg', title: 'Herkules fra Pegasus, WC09V1', desc: 'Herkules fra Pegasus - Laura Midtg\u00e5rd: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,90. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118115, thumb: 'http://i.ytimg.com/vi/UUqj-Pme4qc/0.jpg', title: 'Hjalti von Blitzberg, WC09V1', desc: 'Hjalti von Blitzberg - Chrissy Seipolt: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,10. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118114, thumb: 'http://i.ytimg.com/vi/WT3FZMflOQg/0.jpg', title: 'Hj\u00f6rtur fr\u00e1 Feti, WC09V1', desc: 'Hj\u00f6rtur fr\u00e1 Feti - Michaela Auinger: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,23. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118113, thumb: 'http://i.ytimg.com/vi/qIK1KoMFXsc/0.jpg', title: 'Hugar fr\u00e1 Hv\u00edt\u00e1rholti, WC09V1', desc: 'Hugar fr\u00e1 Hv\u00edt\u00e1rholti - Iris Maria Haraldsson: \nWorld Championships 2009, Brunnadern. \nPreliminary 5,77. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118112, thumb: 'http://i.ytimg.com/vi/_rxx-i3YppY/0.jpg', title: 'Jarl fr\u00e1 Mi\u00f0krika, WC09V1', desc: 'Jarl fr\u00e1 Mi\u00f0krika - Lucia Koch: \nWorld Championships 2009, Brunnadern. \nPreliminary 7,57. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118111, thumb: 'http://i.ytimg.com/vi/Tn3a93LjP48/0.jpg', title: 'Kolgrimur fr\u00e5n Sl\u00e4tterne, WC09V1', desc: 'Kolgrimur fr\u00e5n Sl\u00e4tterne - Tina Kalmo Pedersen: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,97. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118110, thumb: 'http://i.ytimg.com/vi/c2_V_Stv_XI/0.jpg', title: 'Mj\u00f6llnir von Waldhof, WC09V1', desc: 'Mj\u00f6llnir von Waldhof - Laura Steffens: \nWorld Championships 2009, Brunnadern. \nPreliminary 5,57. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118109, thumb: 'http://i.ytimg.com/vi/LHAeNehemaQ/0.jpg', title: '\u00d6rn fr\u00e1 Arnarst\u00f6\u00f0um, WC09V1', desc: '\u00d6rn fr\u00e1 Arnarst\u00f6\u00f0um - Linda R\u00fan P\u00e9tursd\u00f3ttir: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,17. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118108, thumb: 'http://i.ytimg.com/vi/3Axr9bINEoo/0.jpg', title: '\u00d6rn fr\u00e1 Gr\u00edmsh\u00fasum, WC09V1', desc: '\u00d6rn fr\u00e1 Gr\u00edmsh\u00fasum - Ellen Pedersen: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,23. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118107, thumb: 'http://i.ytimg.com/vi/XJM-ydc0-6U/0.jpg', title: 'Oddur fr\u00e1 Hvolsvelli, WC09V1', desc: 'Oddur fr\u00e1 Hvolsvelli - Snorri Dal: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,73. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118106, thumb: 'http://i.ytimg.com/vi/V6glHBIOk5A/0.jpg', title: 'N\u00f6kkvi fra Ryeth\u00f8j, WC09V1', desc: 'N\u00f6kkvi fra Ryeth\u00f8j - Anne-Sofie Nielsen: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,30. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118105, thumb: 'http://i.ytimg.com/vi/mbHeJH24mog/0.jpg', title: 'Vaskur von Lindenhof, WC09V1', desc: 'Vaskur von Lindenhof - Lena Trappe: \nWorld Championships 2009, Brunnadern. \nPreliminary 7,80. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118103, thumb: 'http://i.ytimg.com/vi/cvNJG06-iS8/0.jpg', title: 'Reynir fr\u00e1 H\u00f3lsh\u00fasum, WC09V1', desc: 'Reynir fr\u00e1 H\u00f3lsh\u00fasum - Hjalti Gu\u00f0mundsson: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,17. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118102, thumb: 'http://i.ytimg.com/vi/aZBj0gKU21s/0.jpg', title: 'Muni fr\u00e1 Kvistum, WC09V1', desc: 'Muni fr\u00e1 Kvistum - Anne Stine Haugen: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,60. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118101, thumb: 'http://i.ytimg.com/vi/_xV3R5FRznU/0.jpg', title: 'Reyr fr\u00e1 Dalb\u00e6, WC09V1', desc: 'Reyr fr\u00e1 Dalb\u00e6 - Nils Christian Larsen: \nWorld Championships 2009, Brunnadern. \nPreliminary 7,43. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118100, thumb: 'http://i.ytimg.com/vi/S9opksnBiiM/0.jpg', title: 'Hvinur fr\u00e1 Holtsm\u00fala 1, WC09V1', desc: 'Hvinur fr\u00e1 Holtsm\u00fala 1 - J\u00f3hann R Sk\u00falason: \nWorld Championships 2009, Brunnadern. \nPreliminary 7,33. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118098, thumb: 'http://i.ytimg.com/vi/SXcOk6S7yg8/0.jpg', title: '\u00feor fr\u00e1 Ketu, NC2008 T1', desc: '\u00feor fr\u00e1 Ketu - Lilian Pedersen \nNordic Championships 2008 T1 preliminary \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:118097, thumb: 'http://i.ytimg.com/vi/Tn3a93LjP48/0.jpg', title: 'Kolgrimur fr\u00e5n Sl\u00e4tterne, WC09V1', desc: 'Kolgrimur fr\u00e5n Sl\u00e4tterne - Tina Kalmo Pedersen: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,97. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118096, thumb: 'http://i.ytimg.com/vi/Tehf63ocm1s/0.jpg', title: 'Mist van de Waaldijk, WC09V1', desc: 'Mist van de Waaldijk -- Jessie Huijbers: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,67. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118095, thumb: 'http://i.ytimg.com/vi/WT3FZMflOQg/0.jpg', title: 'Hj\u00f6rtur fr\u00e1 Feti, WC09V1', desc: 'Hj\u00f6rtur fr\u00e1 Feti - Michaela Auinger: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,23. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118094, thumb: 'http://i.ytimg.com/vi/qIK1KoMFXsc/0.jpg', title: 'Hugar fr\u00e1 Hv\u00edt\u00e1rholti, WC09V1', desc: 'Hugar fr\u00e1 Hv\u00edt\u00e1rholti - Iris Maria Haraldsson: \nWorld Championships 2009, Brunnadern. \nPreliminary 5,77. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118093, thumb: 'http://i.ytimg.com/vi/Y-cpcpdEPXE/0.jpg', title: 'Agla von Saringhof, WC09V1', desc: 'Agla von Saringhof - Anjo Blom: \nWorld Championships 2009, Brunnadern. \nPreliminary 5.87. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118092, thumb: 'http://i.ytimg.com/vi/6jYeBmPVN8k/0.jpg', title: 'B-Moll (Moli) fr\u00e1 Vind\u00e1si, WC09V1', desc: 'B-Moll (Moli) fr\u00e1 Vind\u00e1si - \u00deorvaldur \u00c1. \u00deorvaldsson: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,40. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118091, thumb: 'http://i.ytimg.com/vi/V6glHBIOk5A/0.jpg', title: 'N\u00f6kkvi fra Ryeth\u00f8j, WC09V1', desc: 'N\u00f6kkvi fra Ryeth\u00f8j - Anne-Sofie Nielsen: \nWorld Championships 2009, Brunnadern. \nPreliminary 6,30. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118090, thumb: 'http://i.ytimg.com/vi/mbHeJH24mog/0.jpg', title: 'Vaskur von Lindenhof, WC09V1', desc: 'Vaskur von Lindenhof - Lena Trappe: \nWorld Championships 2009, Brunnadern. \nPreliminary 7,80. \nSearchpage: www.lalendi.nl'});
	cvids_196713.push({vid:118088, thumb: 'http://i.ytimg.com/vi/g6-76LmWU7o/0.jpg', title: '\u00de\u00f3r fr\u00e1 Saurb\u00e6', desc: 'Icelandic horse showing 4 gaites'});
	cvids_196713.push({vid:118087, thumb: 'http://i.ytimg.com/vi/UAvNbLEJNEc/0.jpg', title: 'V\u00edgur', desc: 'V\u00edgur'});
	cvids_196713.push({vid:118086, thumb: 'http://i.ytimg.com/vi/D_IfbBpccSc/0.jpg', title: 'Taktur fr\u00e1 Litla-Moshvoli (4 year old gelding)', desc: 'Father: S\u00e6r fr\u00e1 Bakkakoti\nMother: Tandra fr\u00e1 Stokkh\u00f3lma'});
	cvids_196713.push({vid:118085, thumb: 'http://i.ytimg.com/vi/TsLb-2ZKBz4/0.jpg', title: '\u00de\u00f3ra fr\u00e1 Litla-Moshvoli (july 2009)', desc: 'Father: Kolfinnur fr\u00e1 Kjarnholtum\nMother: \u00der\u00fa\u00f0ur fr\u00e1 Litla-Moshvoli\n\nIn this video she has 110 gr boots and a regular bit.'});
	cvids_196713.push({vid:118081, thumb: 'http://i.ytimg.com/vi/fMJ0_38GMUI/0.jpg', title: 'Sva\u00f0i fr\u00e1 Reykh\u00f3lum', desc: ' Father:  \t  IS1995187447 - Forseti fr\u00e1 Langholtsparti\n \n Mother:      IS1991245010 - \u00deruma fr\u00e1 Reykh\u00f3lum\n\n'});
	cvids_196713.push({vid:118076, thumb: 'http://i.ytimg.com/vi/osOalvQ8wP4/0.jpg', title: 'Rammi fra\u0301 L\u00e6kjarbotnum (August 09)', desc: '8 year old gelding.'});
	cvids_196713.push({vid:118075, thumb: 'http://i.ytimg.com/vi/aKdi5u6KmsI/0.jpg', title: 'Kyndill fr\u00e1 Varmal\u00e6k', desc: ' Father: IS1997158469 - H\u00e1gangur fr\u00e1 Narfast\u00f6\u00f0um\n Mother: IS1990257008 - Kveikja fr\u00e1 Sau\u00f0\u00e1rkr\u00f3ki\n\n6 year old gelding.'});
	cvids_196713.push({vid:118074, thumb: 'http://i.ytimg.com/vi/CHqNuG6msk8/0.jpg', title: 'Islandpferde-WM 2009 - Josefin Maier F1 - isibless', desc: 'Josefin Maier mit Prins in der F1-Vorentscheidung.'});
	cvids_196713.push({vid:118073, thumb: 'http://i.ytimg.com/vi/1mxhHBdTTqM/0.jpg', title: 'WorldCup - Warm-up 19.02. - www.isibless.de', desc: 'Erste Bilder aus Odense vom WorldCup 2010 - Training und Vorbereitungen auf das Turnier. www.isibless.de'});
	cvids_196713.push({vid:118072, thumb: 'http://i.ytimg.com/vi/QFYWXHY2v3M/0.jpg', title: 'OSI Ellenbach (div. F2, S/Y.F1) - www.isibless.de', desc: 'OSI Ellenbach (div. F2, S/Y.F1) - www.isibless.de'});
	cvids_196713.push({vid:118071, thumb: 'http://i.ytimg.com/vi/24bmmghZsYI/0.jpg', title: 'OSI Birkenhof 2010: Y.V2 - www.isibless.de', desc: 'OSI Birkenhof 2010: Y.V2 - www.isibless.de'});
	cvids_196713.push({vid:118070, thumb: 'http://i.ytimg.com/vi/XqO389I3Alw/0.jpg', title: 'Eldur vom Schw\u00e4bischen Wald - Ralf Wohllaib - isibless', desc: 'Ralf Wohllaib stellt seinen Eldur vom Schw\u00e4bischen Wald erstmalig nach der Winterpause und seinem Spezialtraining vor. isibless-Video vom 12. Februar 2009.'});
	cvids_196713.push({vid:118069, thumb: 'http://i.ytimg.com/vi/KQkPTQtoqy8/0.jpg', title: 'OSI Handorf: T1-Finale - www.isibless.de', desc: 'OSI Handorf: T1-Finale - www.isibless.de'});
	cvids_196713.push({vid:118068, thumb: 'http://i.ytimg.com/vi/nGHXtOcfZPI/0.jpg', title: 'FIZO Berlar 2010 (RE 1/2) - www.isibless.de', desc: 'FIZO Berlar 2010 (RE 1/2) - www.isibless.de'});
	cvids_196713.push({vid:118067, thumb: 'http://i.ytimg.com/vi/vbpBaIvL_DE/0.jpg', title: 'FYC-Quali Berlar - P1 P3 V1 \& Ehrungen - isibless', desc: 'FYC-Quali Berlar - P1 P3 V1 \& Ehrungen - www.isibless.de'});
	cvids_196713.push({vid:118066, thumb: 'http://i.ytimg.com/vi/XeK07c9B_h4/0.jpg', title: 'icehorse Berlin - icehorse2010.com - isibless.de', desc: 'icehorse2008 - ein Video-R\u00fcckblick von Benjamin Kastner im Auftrag der Berliner Islandpferdefreunde (BIF eV) als Vorschau auf icehorse2010 am 13. M\u00e4rz im Horst-Dohm-Eisstadion in Berlin (www.icehorse2010.com)'});
	cvids_196713.push({vid:118065, thumb: 'http://i.ytimg.com/vi/Pijh6faOl7A/0.jpg', title: 'FIZO Berlar 2010 (Jungpferde) - www.isibless.de', desc: 'FIZO Berlar 2010 (Jungpferde) - www.isibless.de'});
	cvids_196713.push({vid:118064, thumb: 'http://i.ytimg.com/vi/VZa-yLYcS_I/0.jpg', title: 'icehorse2010 - \"Fr\u00fch-St\u00fcck\" - www.isibless.de', desc: 'icehorse2010 - Impressionen vom fr\u00fchen Morgen des 12.03. - www.isibless.de'});
	cvids_196713.push({vid:118063, thumb: 'http://i.ytimg.com/vi/Stnisg3m-L0/0.jpg', title: 'OSI Handorf 24.04.2010 - 3/3 - www.isibless.de', desc: 'OSI Handorf 24.04.2010 - 3/3 - www.isibless.de'});
	cvids_196713.push({vid:118062, thumb: 'http://i.ytimg.com/vi/qQyEqSZNg3c/0.jpg', title: 'isibless - Jolly Schrenk \& Lena Trappe (18.06.2009)', desc: 'Viergangpreis-Vorentscheidung bei der 2. WM-Sichtung 2009 des IPZV eV auf dem Gest\u00fct Ellenbach (18.06.2009). Ritte von Jolly Schrenk mit Gandur von der Igelsburg und Lena Trappe auf Vaskur vom Lindenhof. www.isibless.de'});
	cvids_196713.push({vid:118061, thumb: 'http://i.ytimg.com/vi/VtmV-RM7PVs/0.jpg', title: 'isibless @ Creekside Farm (Katrin Sheehan, USA)', desc: 'isibless zu Besuch bei Katrin Sheehan auf deren Islandpferdehof \"Creekside Farm\" in Georgia, USA.'});
	cvids_196713.push({vid:118060, thumb: 'http://i.ytimg.com/vi/FA0hdg5C35Q/0.jpg', title: 'FYC-Quali Berlar - T\u00f6lt-Mix - www.isibless.de', desc: 'FYC-Quali Berlar - T\u00f6lt-Mix - www.isibless.de'});
	cvids_196713.push({vid:118059, thumb: 'http://i.ytimg.com/vi/wLAN2Zm755Q/0.jpg', title: 'FIZO Berlar 2010 (Exterieur) - www.isibless.de', desc: 'FIZO Berlar 2010 (Exterieur) - www.isibless.de'});
	cvids_196713.push({vid:118058, thumb: 'http://i.ytimg.com/vi/DEE6axOawlU/0.jpg', title: 'OSI Handorf 23.04.2010 - 2/2 - www.isibless.de', desc: 'OSI Handorf 23.04.2010 - 2/2 - www.isibless.de'});
	cvids_196713.push({vid:118057, thumb: 'http://i.ytimg.com/vi/nrDO2wOGFtQ/0.jpg', title: 'Islandpferde-WM 2009 - Tina K. Pedersen V1 - isibless', desc: 'Tina Kalmo Pedersen im Viergangpreis'});
	cvids_196713.push({vid:118056, thumb: 'http://i.ytimg.com/vi/aGN0pF6c96Y/0.jpg', title: 'Islandpferde-WM 2009 - Siggi Sig T2-VE - isibless', desc: 'H\u00f6r\u00f0ur fr\u00e1 Eskiholti und Sigur\u00f0ur Sigur\u00f0arson in der T2-Vorentscheidung (7,63).'});
	cvids_196713.push({vid:118055, thumb: 'http://i.ytimg.com/vi/XYF2p8C98Z4/0.jpg', title: 'Lindenhof-Hengstschau - www.isibless.de', desc: 'Lindenhof-Hengstschau am 28.03.2010 in Altenberge - www.isibless.de'});
	cvids_196713.push({vid:118054, thumb: 'http://i.ytimg.com/vi/e_vs2GWSCj8/0.jpg', title: 'Islandpferde-WM 2009 - Jolly Schrenk V1 - isibless', desc: 'Jolly Schrenk und Gandur von der Igelsburg auf der Islandpferde-WM in Brunnadern.'});
	cvids_196713.push({vid:118053, thumb: 'http://i.ytimg.com/vi/1HO9MyWBbms/0.jpg', title: 'Richterfortbildung Berlar 2010 b - www.isibless.de', desc: 'Richterfortbildung Berlar 2010 b - www.isibless.de'});
	cvids_196713.push({vid:118052, thumb: 'http://i.ytimg.com/vi/APIvt2Q6wlc/0.jpg', title: 'isibless @ Fohlenbeurteilung Lindenhof 2009 (28.08.)', desc: 'Video-Impressionen vom 2009er Jahrgang, Richterin: Marlise Grimm'});
	cvids_196713.push({vid:118051, thumb: 'http://i.ytimg.com/vi/48uP5m0sQMw/0.jpg', title: 'Kronshof-special - T1, T2, T3 - www.isibless.de', desc: 'Kronshof-special - T1, T2, T3 - www.isibless.de'});
	cvids_196713.push({vid:118050, thumb: 'http://i.ytimg.com/vi/8EXGPTIC7hs/0.jpg', title: 'Islandpferde-WM 2009 - Frami vom Hrafnsholt - isibless', desc: 'Zucht-WM: Samantha Leidesdorff zeigt den 5-j\u00e4hrigen Depill-Sohn Frami vom Hrafnsholt aus eigener Zucht.'});
	cvids_196713.push({vid:118049, thumb: 'http://i.ytimg.com/vi/mpltQRdufR4/0.jpg', title: 'Islandpferde-WM 2009 - F1 B-Finale - isibless', desc: 'B-Finale im F\u00fcnfgangpreis bei der WM 2009'});
	cvids_196713.push({vid:118048, thumb: 'http://i.ytimg.com/vi/YUmuOcVcayc/0.jpg', title: 'FIZO Hella (IS) - 28.06.2010 - www.isibless.de', desc: 'FIZO Hella (IS) - 28.06.2010 - www.isibless.de'});
	cvids_196713.push({vid:118047, thumb: 'http://i.ytimg.com/vi/l8Qtp9xE8Cc/0.jpg', title: 'Islandpferde-WM 2009 - Laura Steffens V1 - isibless', desc: 'Laura Steffens und Mj\u00f6llnir vom Waldhof im Viergangpreis'});
	cvids_196713.push({vid:118046, thumb: 'http://i.ytimg.com/vi/KYGe-C0a4Q4/0.jpg', title: 'isibless - Turnier in Berlar 2009 - www.isibless.de', desc: 'Impressionen vom Islandpferdeturnier in Berlar, 22./23. August 2009.'});
	cvids_196713.push({vid:118045, thumb: 'http://i.ytimg.com/vi/gmSD0CshBoc/0.jpg', title: 'Islandpferde-WM 2009 - Passrennen P1 a/b - isibless', desc: 'Erster und zweiter Lauf des Passrennens \u00fcber 250 Meter.'});
	cvids_196713.push({vid:118044, thumb: 'http://i.ytimg.com/vi/cGr-E7OoFxs/0.jpg', title: 'Jens F\u00fcchtenschnieder - Island Nov \'09 a - www.isibless.de', desc: 'Jens F\u00fcchtenschnieder - Island Nov \'09 a - www.isibless.de'});
	cvids_196713.push({vid:118043, thumb: 'http://i.ytimg.com/vi/d-Q8uFvDBCU/0.jpg', title: 'isibless @ Su\u00f0urlandsm\u00f3t 2009 - T1-Finale Meisterklasse', desc: 'Su\u00f0urlandsm\u00f3t 2009 in Hella: Sieg f\u00fcr Siggi Sig und Kjarnorka (8,56)'});
	cvids_196713.push({vid:118042, thumb: 'http://i.ytimg.com/vi/MIi1zfQ6J0E/0.jpg', title: 'WorldCup - V1-VE 1/2 - www.isibless.de', desc: 'WorldCup - Viergang-Vorentscheidung 1/2 - www.isibless.de'});
	cvids_196713.push({vid:118041, thumb: 'http://i.ytimg.com/vi/k9wEDOra2gg/0.jpg', title: 'Islandpferde-WM 2009 - T2-VE Jolly \& Kiki - isibless', desc: 'Vorentscheidung in der T\u00f6ltpr\u00fcfung T2 bei der Islandpferde-WM 2009: Jolly Schrenk und Kirsten Klepka.'});
	cvids_196713.push({vid:118040, thumb: 'http://i.ytimg.com/vi/wWPVnGbxDls/0.jpg', title: 'Islandpferde-WM 2009 - Lena Trappe V1 - isibless', desc: 'Lena Trappe und Vaskur vom Lindenhof in der V1-Vorentscheidung.'});
	cvids_196713.push({vid:118039, thumb: 'http://i.ytimg.com/vi/g0E7ET2WP-0/0.jpg', title: 'Islandpferde-WM 2009 - J\u00f3hann R. Sk\u00falason - isibless', desc: 'J\u00f3hann R\u00fanar Sk\u00falason auf Hvinur fr\u00e1 Holtsm\u00fala in der T1-Vorentscheidung.'});
	cvids_196713.push({vid:118038, thumb: 'http://i.ytimg.com/vi/pbWlwkVXDoI/0.jpg', title: 'Richterfortbildung Berlar 2010 c - www.isibless.de', desc: 'Richterfortbildung Berlar 2010 c - www.isibless.de'});
	cvids_196713.push({vid:118037, thumb: 'http://i.ytimg.com/vi/I7K2PsBzTZA/0.jpg', title: 'isibless - WM-Sichtung Ellenbach (19.06.2009)', desc: 'Video-Highlights von Tag 2 der WM-Sichtung 2009 auf dem Gest\u00fct Ellenbach inkl. F1, V2 und P1. www.isibless.de'});
	cvids_196713.push({vid:118036, thumb: 'http://i.ytimg.com/vi/PI9o-TRjJB8/0.jpg', title: 'Islandpferde-WM 2009 - Vicky Eggertsson F1 - isibless', desc: 'Vorentscheidung im F\u00fcnfgang mit Vicky Eggertsson und Kvikur vom Barghof.'});
	cvids_196713.push({vid:118035, thumb: 'http://i.ytimg.com/vi/bU6lRpRIBic/0.jpg', title: 'Islandpferde-WM 2009 - R\u00fana \& Julie F1 - isibless', desc: 'R\u00fana Einarsd\u00f3ttir-Zingsheim und Julie Christiansen in ihrer F1-Vorentscheidung.'});
	cvids_196713.push({vid:118034, thumb: 'http://i.ytimg.com/vi/r3c19CYtoYY/0.jpg', title: 'Islandpferde-WM 2009 - Viktor fr\u00e1 Diisa - isibless', desc: 'Islandpferde-WM in der Schweiz: Erster Durchgang der Reiteigenschaften f\u00fcr Viktor fr\u00e1 Diisa (V: Garri fr\u00e1 Reykjav\u00edk), vorgestellt von J\u00f3hann R. Sk\u00falason.'});
	cvids_196713.push({vid:118033, thumb: 'http://i.ytimg.com/vi/KBTnWlIgu3Q/0.jpg', title: 'isibless @ Weser-Ems-Meisterschaft 2009 - 4/4', desc: 'isibless @ Weser-Ems-Meisterschaft 2009 in Belm - 4/4'});
	cvids_196713.push({vid:118032, thumb: 'http://i.ytimg.com/vi/1MJ0bdM7l4g/0.jpg', title: 'isibless - V1-Finale, Bayer. M\'schaft 2009, Lechleite - www.isibless.com', desc: 'Viergangpreis: A-Finale, Bayer. Meisterschaft 2009'});
	cvids_196713.push({vid:118031, thumb: 'http://i.ytimg.com/vi/I-HJuIX5z3w/0.jpg', title: 'Islandpferde-WM 2009 - \u00c1sta Bjarnad\u00f3ttir-Covert - isibless', desc: '\u00c1sta D\u00f6gg Bjarnad\u00f3ttir Covert und Dynjandi fr\u00e1 Dalv\u00edk.'});
	cvids_196713.push({vid:118030, thumb: 'http://i.ytimg.com/vi/fmFWC-qJMjM/0.jpg', title: 'Islandpferde-WM 2009 - T\u00f3ti Eymundsson F1 - isibless', desc: 'Kraftur fr\u00e1 Bringu in der F1-VE von Brunnadern.'});
	cvids_196713.push({vid:118029, thumb: 'http://i.ytimg.com/vi/ghXmQ_U8oGI/0.jpg', title: 'Apassionata in Dortmund (28.11.2009) - www.isibless.de', desc: 'Apassionata in Dortmund (28.11.2009) - www.isibless.de'});
	cvids_196713.push({vid:118028, thumb: 'http://i.ytimg.com/vi/K4vhfE8UkRM/0.jpg', title: 'isibless - Bayer. Meisterschaft 2009 - Highlights 3/3', desc: 'isibless - Bayer. Meisterschaft 2009 - Highlights 3/3'});
	cvids_196713.push({vid:118027, thumb: 'http://i.ytimg.com/vi/u4JqsCgPN_g/0.jpg', title: 'isibless - Bayer. Meisterschaft 2009 - Highlights 2/3', desc: 'isibless - Bayer. Meisterschaft 2009 - Highlights 1/3'});
	cvids_196713.push({vid:118026, thumb: 'http://i.ytimg.com/vi/FzZBwDawAOE/0.jpg', title: 'isibless in Island - September 2009', desc: 'isibless in Island - September 2009'});
	cvids_196713.push({vid:118025, thumb: 'http://i.ytimg.com/vi/OrUVplamoD0/0.jpg', title: 'isibless @ Weser-Ems-Meisterschaft 2009 - 2/4', desc: 'isibless @ Weser-Ems-Meisterschaft 2009 in Belm - 2/4'});
	cvids_196713.push({vid:118024, thumb: 'http://i.ytimg.com/vi/yE87RAKm4LU/0.jpg', title: 'isibless @ Weser-Ems-Meisterschaft 2009 - 1/4', desc: 'isibless @ Weser-Ems-Meisterschaft 2009 in Belm - 1/4'});
	cvids_196713.push({vid:118023, thumb: 'http://i.ytimg.com/vi/GDx6VNsrVLM/0.jpg', title: 'isibless - Bayer. Meisterschaft 2009 - Highlights 1/3', desc: 'isibless - Bayer. Meisterschaft 2009 - Highlights 1/3'});
	cvids_196713.push({vid:118021, thumb: 'http://i.ytimg.com/vi/tietqJrec9Q/0.jpg', title: 'Islandpferde-WM 2009 - V1-Finale - isibless', desc: 'Viergang-Finale, WM 2009'});
	cvids_196713.push({vid:118019, thumb: 'http://i.ytimg.com/vi/w-0CxXba7WM/0.jpg', title: 'isibless @ Apassionata in K\u00f6ln (05.04.2009)', desc: 'www.apassionata.de / www.isibless.de'});
	cvids_196713.push({vid:118017, thumb: 'http://i.ytimg.com/vi/mrABmujXPck/0.jpg', title: 'isibless @ FIZO Berlar 2009 (Teil 1)', desc: 'Internationale Islandpferde-Materialpr\u00fcfung in Berlar, 21./22. April 2009.'});
	cvids_196713.push({vid:118016, thumb: 'http://3.gvt0.com/vi/bcuj94eiCFc/default.jpg', title: 'isibless @ FIZO Berlar 2009 (Teil 2)', desc: 'Internationale Islandpferde-Materialpr\u00fcfung in Berlar, 21./22. April 2009.youtube.com'});
	cvids_196713.push({vid:118015, thumb: 'http://i.ytimg.com/vi/1dCmDk4WMmU/0.jpg', title: 'isibless: Lindenhof-Testturnier \'09', desc: 'isibless: Lindenhof-Testturnier \'09 (www.isibless.de / www.andreas-trappe.de)'});
	cvids_196713.push({vid:118014, thumb: 'http://2.gvt0.com/vi/4kd3yiUZqG4/default.jpg', title: 'Islandpferde-WM 2009 - Haukur Trggvason T1 - isibless', desc: 'WM 2009youtube.com'});
	cvids_196713.push({vid:118013, thumb: 'http://1.gvt0.com/vi/6Ltz38WLPN0/default.jpg', title: 'isibless in Island (Mai 2009)', desc: 'isibless in Island (4.-8. Mai 2009)youtube.com'});
	cvids_196713.push({vid:118012, thumb: 'http://0.gvt0.com/vi/YeUEGL0p7rw/default.jpg', title: 'isibless: Z\u00fcchterreise in Nordisland (06.05.2009)', desc: 'isibless zu Gast auf der Z\u00fcchterreise in Nordisland. Gastgeber: Arinbj\u00f6rn \&quot;Abbi\&quot; J\u00f3hannsson.youtube.com'});
	cvids_196713.push({vid:118011, thumb: 'http://i.ytimg.com/vi/O8wNZ5V0S0k/0.jpg', title: 'DIM 2010 - NC Larsen V1-VE - www.isibless.de', desc: 'DIM 2010 - Nils-Christian Larsen in der Viergang-Vorentscheidung am 16.07.2010 in Lingen - www.isibless.de'});
	cvids_196713.push({vid:118010, thumb: 'http://i.ytimg.com/vi/M9o7ba9LJEk/0.jpg', title: 'DIM 2010 - T2-Finale - www.isibless.de', desc: 'DIM 2010 in Lingen: Finale der T\u00f6ltpr\u00fcfung T2 (www.isibless.de)'});
	cvids_196713.push({vid:118009, thumb: 'http://i.ytimg.com/vi/g8E9ivKwMBY/0.jpg', title: 'DIM 2010 - V1-Finale - www.isibless.de', desc: 'DIM 2010 in Lingen: Finale im Viergang V1 (www.isibless.de)'});
	cvids_196713.push({vid:118008, thumb: 'http://i.ytimg.com/vi/0kiGDFUSO3I/0.jpg', title: 'DIM 2010 - F1-Finale - www.isibless.de', desc: 'DIM 2010 in Lingen: Finale im F\u00fcnfgang F1 (www.isibless.de)'});
	cvids_196713.push({vid:118007, thumb: 'http://i.ytimg.com/vi/15DZQocNjUA/0.jpg', title: 'DIM 2010 - Sonntags-Mix - www.isibless.de', desc: 'DIM 2010 in Lingen: Impressionen vom Finaltag (www.isibless.de)'});
	cvids_196713.push({vid:118006, thumb: 'http://i.ytimg.com/vi/1VvZocpvxHY/0.jpg', title: 'DIM 2010 - T1-Finale - www.isibless.de', desc: 'DIM 2010 in Lingen: Finale im T\u00f6ltpreis T1 (www.isibless.de)'});
	cvids_196713.push({vid:118005, thumb: 'http://i.ytimg.com/vi/6Ltz38WLPN0/0.jpg', title: 'isibless in Island (Mai 2009)', desc: 'isibless in Island (4.-8. Mai 2009)'});
	cvids_196713.push({vid:118004, thumb: 'http://i.ytimg.com/vi/O8wNZ5V0S0k/0.jpg', title: 'DIM 2010 - NC Larsen V1-VE - www.isibless.de', desc: 'DIM 2010 - Nils-Christian Larsen in der Viergang-Vorentscheidung am 16.07.2010 in Lingen - www.isibless.de'});
	cvids_196713.push({vid:118003, thumb: 'http://i.ytimg.com/vi/O7oCwC7zGuc/0.jpg', title: 'DIM 2010 - Frauke \& Karly V1-VE - www.isibless.de', desc: 'DIM 2010 - Frauke Schenzel \& Karly Zingsheim in der Viergang-Vorentscheidung am 16.07.2010 - www.isibless.de'});
	cvids_196713.push({vid:118002, thumb: 'http://i.ytimg.com/vi/OMGoifiV368/0.jpg', title: 'DIM 2010 - Karly Zingsheim T1-VE - www.isibless.de', desc: 'DIM 2010 - Karly Zingsheim in der T\u00f6ltpreis-Vorentscheidung mit Dagur (8,23) am 15. Juli 2010 in Lingen - www.isibless.de'});
	cvids_196713.push({vid:110145, thumb: 'http://i.ytimg.com/vi/VzXE8oOQAsk/0.jpg', title: 'Islandpferde, Icelandic Horses, Junghengste (young stallions),  www.bfva.com', desc: 'Junghengste 2008 auf dem Wiesenhof. You can download the free video on www.bfva.com. Fr\u00fch am morgen auf der Weide. Von Bahl Film und Video. www.bfva.com, Hochzeitsfilm, Hochzeitsvideo, wedding video'});
	cvids_196713.push({vid:101516, thumb: 'http://i.ytimg.com/vi/YeUEGL0p7rw/0.jpg', title: 'isibless: Z\u00fcchterreise in Nordisland (06.05.2009)', desc: 'isibless zu Gast auf der Z\u00fcchterreise in Nordisland. Gastgeber: Arinbj\u00f6rn \"Abbi\" J\u00f3hannsson.'});
	cvids_196713.push({vid:101515, thumb: 'http://i.ytimg.com/vi/lyeNqKht_aY/0.jpg', title: 'isibless - \u00de\u00f3r\u00f0ur \u00deorgeirsson - Video-Impressionen - akurgerdi.is', desc: 'Video-Impressionen von \u00de\u00f3r\u00f0ur \u00deorgeirsson \"at work\" - (C) akurgerdi.is / benmedia.is'});
	cvids_196713.push({vid:101514, thumb: 'http://i.ytimg.com/vi/6XrxhM6rrUQ/0.jpg', title: 'isibless @ Passchampionat 2007 - Intro', desc: 'isibless pr\u00e4sentiert die H\u00f6hepunkte des Internationalen Passchampionats 2007 / isibless presents the highlights of the International Pace Championship 2007 - www.isibless.de'});
	cvids_196713.push({vid:101513, thumb: 'http://i.ytimg.com/vi/5F3uI5xlXBc/0.jpg', title: 'isibless: Horses on Ice 2009 P2', desc: 'isibless: Horses on Ice 2009 P2 - Islandpferde-Europameisterschaft auf Eis.'});
	cvids_196713.push({vid:101512, thumb: 'http://i.ytimg.com/vi/Zn97RjPE9hc/0.jpg', title: 'worldcup - Youngster-T1 - www.isibless.de', desc: 'worldcup - Youngster-T\u00f6ltpreis - www.isibless.de'});
	cvids_196713.push({vid:101511, thumb: 'http://i.ytimg.com/vi/D5XV74khjHM/0.jpg', title: 'isibless @ Passchampionat 2007 - A-Flokkur', desc: 'Finale: A-Flokkur'});
	cvids_196713.push({vid:101510, thumb: 'http://i.ytimg.com/vi/dYAGlE7bkVY/0.jpg', title: 'isibless: Horses on Ice 2009 T1', desc: 'isibless: Horses on Ice 2009 T1 - Islandpferde-Europameisterschaft auf Eis.'});
	cvids_196713.push({vid:101509, thumb: 'http://i.ytimg.com/vi/ZCc6jN6SLPU/0.jpg', title: 'isibless @ Passchampionat 2007 - T2', desc: 'T\u00f6ltpr\u00fcfung T2'});
	cvids_196713.push({vid:101508, thumb: 'http://i.ytimg.com/vi/xkcgPVRV4Eg/0.jpg', title: 'Islandpferde-WM 2009 - Opening Ceremony - isibless', desc: 'Er\u00f6ffnungsfeier der Islandpferde-WM 2009 in Brunnadern.'});
	cvids_196713.push({vid:101507, thumb: 'http://i.ytimg.com/vi/nYe3Dfn_FFo/0.jpg', title: 'isibless @ Landsm\u00f3t 2008 - 2/2', desc: 'Live-Eindr\u00fccke vom diesj\u00e4hrigen Landsm\u00f3t im s\u00fcdisl\u00e4ndischen Hella - Teil 2 / Live impressions from this year\'s Landsm\u00f3t in the Southern Icelandic town of Hella - part 2.'});
	cvids_196713.push({vid:101506, thumb: 'http://i.ytimg.com/vi/pyIaBiYTces/0.jpg', title: 'isibless @ Landsm\u00f3t 2008 - 1/2', desc: 'Live-Eindr\u00fccke vom diesj\u00e4hrigen Landsm\u00f3t im s\u00fcdisl\u00e4ndischen Hella - Teil 1 / Live impressions from this year\'s Landsm\u00f3t in the Southern Icelandic town of Hella - part 1.'});
	cvids_196713.push({vid:101505, thumb: 'http://i.ytimg.com/vi/6Ltz38WLPN0/0.jpg', title: 'isibless in Island (Mai 2009)', desc: 'isibless in Island (4.-8. Mai 2009)'});
	cvids_196713.push({vid:101504, thumb: 'http://i.ytimg.com/vi/4kd3yiUZqG4/0.jpg', title: 'Islandpferde-WM 2009 - Haukur Trggvason T1 - isibless', desc: 'WM 2009'});
	cvids_196713.push({vid:101503, thumb: 'http://i.ytimg.com/vi/il85aJj0rFA/0.jpg', title: 'Islandpferde-WM 2009 - T1-Finale - isibless', desc: 'T\u00f6ltpreis-Finale auf der Islandpferde-WM 2009.'});
	cvids_196713.push({vid:101497, thumb: 'http://i.ytimg.com/vi/vx8coWkCePQ/0.jpg', title: 'Avelsbed\u00f6mning Solbacken 2004', desc: 'Ett kort collage fr\u00e5n visningarna'});
	cvids_196713.push({vid:101494, thumb: 'http://i.ytimg.com/vi/Aj09ykJslzs/0.jpg', title: '\u00de\u00f3r\u00f0ur \u00deorgeirsson', desc: '\u00de\u00f3r\u00f0ur \u00deorgeirsson at breedingshow in Iceland'});
	cvids_196713.push({vid:101493, thumb: 'http://i.ytimg.com/vi/i13bbbrLVZE/0.jpg', title: 'Progency of Galsi', desc: 'Icelandic horses'});
	cvids_196713.push({vid:101492, thumb: 'http://i.ytimg.com/vi/n7ZPc7lWghk/0.jpg', title: 'isibless: Horses on Ice 2009 Finals', desc: 'isibless: Horses on Ice 2009 - Islandpferde-Europameisterschaft auf Eis.'});
	cvids_196713.push({vid:101489, thumb: 'http://i.ytimg.com/vi/GE55OGFzXr0/0.jpg', title: 'L\u00fdsa from \u00c1smundarsta\u00f0ir', desc: 'L\u00fdsa IS2000281499 is an eight years old mare, Palomino with Blaze. L\u00fdsa is attractive 1. prized mare with total of 8,18.'});
	cvids_196713.push({vid:101400, thumb: 'http://i.ytimg.com/vi/fjLUzp4GCIk/0.jpg', title: 'T\u00f6fri fr\u00e1 Kjartansst\u00f6\u00f0um', desc: 'The beautiful 1 prize icelandic stallion, T\u00f6fri fr\u00e1 Kjartansst\u00f6\u00f0um (means Magic). www.terna.is'});
	cvids_196713.push({vid:101399, thumb: 'http://i.ytimg.com/vi/c7esMA_ftys/0.jpg', title: 'H\u00e1kon vom Wiesenhof', desc: 'Icelandic stallion H\u00e1kon from Wiesenhof estate'});
	cvids_196713.push({vid:101398, thumb: 'http://i.ytimg.com/vi/ICr4-t9ZLtc/0.jpg', title: 'Gyrdir vom Wiesenhof', desc: 'Icelandic stallion Gyrdir from Wiesenhof estate'});
	cvids_196713.push({vid:101395, thumb: 'http://i.ytimg.com/vi/N3mMY0ztWN4/0.jpg', title: 'Raudskeggur Akranes Agust 08', desc: ''});
	cvids_196713.push({vid:101394, thumb: 'http://i.ytimg.com/vi/8GmjdlICeU4/0.jpg', title: 'Raudskeggur Jule 2009 Moso', desc: 'Rau\u00f0skeggur fr\u00e1 Brautartungu. Stallion. Competition in Mosfellsb\u00e6r Jule 2009. . www.alfholar.is'});
	cvids_196713.push({vid:101393, thumb: 'http://i.ytimg.com/vi/fKK8XbyLdeQ/0.jpg', title: 'T\u00fdvar', desc: 'The beautiful 1 prize icelandic stallion T\u00fdvar fr\u00e1 Kjartansst\u00f6\u00f0um. www.terna.is'});
	cvids_196713.push({vid:101392, thumb: 'http://i.ytimg.com/vi/0VY-HmBypa0/0.jpg', title: 'Kjer\u00falf', desc: 'Icelandic 1st. price stallion. Super t\u00f6lt and trot.'});
	cvids_196713.push({vid:101391, thumb: 'http://i.ytimg.com/vi/egt9NfUr5bk/0.jpg', title: 'The Icelandic horse festival. LM in Iceland.', desc: 'Some random photos I took at LM in Iceland. Landsm\u00f3t at Hella 2008. Nokkrar myndir fr\u00e1 LM-Hella 2008. Engar keppnis samt, frekar svona \u00e1 \"bak vi\u00f0 tj\u00f6ldin\" myndir.. Enjoy..! My website- s-lilje.deviantart.com Song in the video Viva La Vida with Coldplay.'});
	cvids_196713.push({vid:101362, thumb: 'http://i.ytimg.com/vi/JiYdEQqVr_o/0.jpg', title: 'Icelandic Horse', desc: 'Pictures of this amazing horse'});
	cvids_196713.push({vid:101361, thumb: 'http://i.ytimg.com/vi/33CikynuqvY/0.jpg', title: 'Thing\'s Why To Love Icelandic Horses', desc: 'Here are few things why to love ielandic horses so MUCH! I hope you injoy it...'});
	cvids_196713.push({vid:101360, thumb: 'http://i.ytimg.com/vi/DsfsUl98l40/0.jpg', title: 'The Icelandic horse', desc: 'Some videos and photos put thogether'});
	cvids_196713.push({vid:101289, thumb: 'http://i.ytimg.com/vi/9evg8WbFICI/0.jpg', title: 'kings of iceland 2 !', desc: 'since the kings of iceland was such a blast i made another video enjoy!'});
	cvids_196713.push({vid:101288, thumb: 'http://i.ytimg.com/vi/Q9-ay5C13ow/0.jpg', title: 'the kings of iceland', desc: 'the kings of iceland is a video of good stalions in iceland THE SONGS AND PICTURES ARE NOT MINE SO DONT GIVE THAT CREDIT TO ME'});
	cvids_196713.push({vid:101287, thumb: 'http://i.ytimg.com/vi/Z-yasL1atuI/0.jpg', title: 'Rafn fr\u00e1 Vestra-Geldingaholti, NC 2006 T1', desc: 'Rafn fr\u00e1 Vestra-Geldingaholti'});
	cvids_196713.push({vid:101286, thumb: 'http://i.ytimg.com/vi/QQJU3ZxCBec/0.jpg', title: 'Vaskur vom Lindenhof, DIM 2009 V1', desc: 'Vaskur vom Lindenhof - Lena Trappe: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101285, thumb: 'http://i.ytimg.com/vi/46UtY3Q46dQ/0.jpg', title: 'Sibelius vom Eichenhof, NC 2006 T1', desc: 'Sibelius vom Eichenhof'});
	cvids_196713.push({vid:101284, thumb: 'http://i.ytimg.com/vi/qKDREA6pP0U/0.jpg', title: 'Darri vom Lipperthof, Training M\u00e4rz 2009', desc: 'Der Hengst, Darri vom Lipperthof im Training bei Steffi Kleis. M\u00e4rz 2009.'});
	cvids_196713.push({vid:101283, thumb: 'http://i.ytimg.com/vi/6bXwgzOBAgo/0.jpg', title: 'Sp\u00f6k 07-02-10', desc: 'Sp\u00f6k in der Ovalbahn, Februar 2010'});
	cvids_196713.push({vid:101281, thumb: 'http://i.ytimg.com/vi/kkq-8wDgho8/0.jpg', title: 'Sp\u00f6k 07-02-10', desc: 'Sp\u00f6k in der Ovalbahn'});
	cvids_196713.push({vid:101280, thumb: 'http://i.ytimg.com/vi/nyticn1JjbA/0.jpg', title: 'Leiftri vom M\u00f6nchhof, DTM09', desc: 'Leiftri vom M\u00f6nchhof - Paul-Christian M\u00fcller: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 8.04 Ridden Abilities: 7.90 Total: 7.95'});
	cvids_196713.push({vid:101279, thumb: 'http://i.ytimg.com/vi/4YOenKgypoA/0.jpg', title: '\u00de\u00f6gn fr\u00e1 Feti, DTM09', desc: '\u00de\u00f6gn fr\u00e1 Feti - Styrmir \u00c1rnason: Mare, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.98 Ridden Abilities: 7.81 Total: 7.88'});
	cvids_196713.push({vid:101278, thumb: 'http://i.ytimg.com/vi/EA8_d7si9_I/0.jpg', title: 'Drift van \'t V\u00e8\u00e8neteupe, NL 2009 Breeding', desc: 'Drift van \'t V\u00e8\u00e8neteupe - Els van Weel: Mare, NSIJP keuring Oirschot 27 juni 2009 Conformation: 7.78 Ridden abilities: 6.82 Total: 7.20'});
	cvids_196713.push({vid:101277, thumb: 'http://i.ytimg.com/vi/E3kL97RdrbA/0.jpg', title: '\u00c1rvakur von der Birk, DTM09', desc: '\u00c1rvakur von der Birk - Bernhard Pinsdorf: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: (7.78) Ridden Abilities: (7.40) Total: (7.56) Disqualified'});
	cvids_196713.push({vid:101276, thumb: 'http://i.ytimg.com/vi/6L015UbSL6E/0.jpg', title: 'Marlon fr\u00e1 Skyggni, DIM 2009 V1', desc: 'Marlon (Stj\u00f6rnuf\u00e1kur) fr\u00e1 Skyggni - Nicole Rubel-Leibord: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101275, thumb: 'http://i.ytimg.com/vi/YVPzgGOcpsg/0.jpg', title: 'Haukur vom Trollstieg, DTM09', desc: 'Haukur vom Trollstieg - Steffi Dincher-Klemm: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.56 Ridden Abilities: 7.45 Total: 7.50'});
	cvids_196713.push({vid:101274, thumb: 'http://i.ytimg.com/vi/pBOO1gxTFsM/0.jpg', title: 'Piltur von Aegidienberg, DTM09', desc: 'Piltur von Aegidienberg - Walter Feldmann: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 8.29 Ridden Abilities: 7.35 Total: 7.73'});
	cvids_196713.push({vid:101273, thumb: 'http://i.ytimg.com/vi/v143WlKglhU/0.jpg', title: 'Elja vom Waldhof, DTM09', desc: 'Elja vom Waldhof - Andreas Trappe: Mare, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.78 Ridden Abilities: 8.08 Total: 7.96'});
	cvids_196713.push({vid:101272, thumb: 'http://i.ytimg.com/vi/GcJ4suKiHDg/0.jpg', title: 'Greifi von der Fuchsfarm, DTM09', desc: 'Greifi von der Fuchsfarm - Heinz Pinsdorf: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.91 Ridden Abilities: 7.53 Total: 7.68'});
	cvids_196713.push({vid:101271, thumb: 'http://i.ytimg.com/vi/d95RqKHDmN8/0.jpg', title: 'Kolbr\u00e1 d\'Auas Sparsas, DIM 2008 FT2', desc: 'Kolbr\u00e1 d\'Auas Sparsas - Flurina Barandun: T2 Finale, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101270, thumb: 'http://i.ytimg.com/vi/XCUw2a8ojfM/0.jpg', title: 'Kvikur vom \u00d6rlingerhof, DIM 2009 V1', desc: 'Kvikur vom \u00d6rlingerhof - Uwe Brenner: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101269, thumb: 'http://i.ytimg.com/vi/QRwdDE0AlkQ/0.jpg', title: 'Stormur fra Fet, DTM09', desc: 'Stormur fra Fet - Jens F\u00fcchtenschnieder: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.86 Ridden Abilities: 8.47 Total: 8.23'});
	cvids_196713.push({vid:101268, thumb: 'http://i.ytimg.com/vi/MK0D7kZmYN4/0.jpg', title: 'Bl\u00e6r vom Birkenhof, DTM09', desc: 'Bl\u00e6r vom Birkenhof - Jonas Hassel: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 8.21 Ridden Abilities: 7.98 Total: 8.07'});
	cvids_196713.push({vid:101267, thumb: 'http://i.ytimg.com/vi/WLCpWKm-YmI/0.jpg', title: 'Dekja von Hassel, DIM 2009 V1', desc: 'Dekja von Hassel - Hanna Damouche: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101266, thumb: 'http://i.ytimg.com/vi/Cg6UtNLc7A0/0.jpg', title: 'H\u00f6fgi fr\u00e1 \u00c1rt\u00fanum, DIM 2009 V1', desc: 'H\u00f6fgi fr\u00e1 \u00c1rt\u00fanum - Maike Topphoff: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101265, thumb: 'http://i.ytimg.com/vi/rPd1sNvz8tg/0.jpg', title: 'Elita vom Forstwald, DTM09 Breeding', desc: 'Elita vom Forstwald - Karly Zingsheim: Mare, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 8.16 Ridden Abilities: 8.08 Total: 8.11'});
	cvids_196713.push({vid:101264, thumb: 'http://i.ytimg.com/vi/Rsv2OMNZonI/0.jpg', title: 'Hrani vom Schlo\u00dfberg, DIM 2008 FT2', desc: 'Hrani vom Schlo\u00dfberg - Styrmir \u00c1rnason: Finale T2, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101263, thumb: 'http://i.ytimg.com/vi/eNuh5Yz22PQ/0.jpg', title: 'Kringla vom Eldhof, DIM 2009 V1', desc: 'Kringla vom Eldhof - Samantha Leidesdorff: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101262, thumb: 'http://i.ytimg.com/vi/P6O6TZcJk9A/0.jpg', title: 'D\u00f3ttla, DTM09', desc: 'D\u00f3ttla - Walter Feldmann: Mare, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.95 Ridden Abilities: 7.30 Total: 7.56'});
	cvids_196713.push({vid:101260, thumb: 'http://i.ytimg.com/vi/bceOAuHX4sw/0.jpg', title: 'Gellir fr\u00e1 \u00c1rbakka, DIM 2009 V1', desc: 'Gellir fr\u00e1 \u00c1rbakka - Julie Christiansen: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101259, thumb: 'http://i.ytimg.com/vi/FsCtvBAvwQ0/0.jpg', title: 'Kveikur fr\u00e1 Lian, DIM 2009 V1', desc: 'Kveikur fr\u00e1 Lian - Anne Stine Haugen: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101258, thumb: 'http://i.ytimg.com/vi/OpHI_7MflNE/0.jpg', title: 'Moeara fr\u00e1 M\u00e1nab\u00e6, NL 2009 Breeding', desc: 'Moeara fr\u00e1 M\u00e1nab\u00e6 - Ineke Flik-Beerda: Mare, NSIJP keuring Oirschot 27 juni 2009 Conformation: 7.49 Ridden abilities: 6.98 Total: 7.19'});
	cvids_196713.push({vid:101257, thumb: 'http://i.ytimg.com/vi/SzLCJxsaKXo/0.jpg', title: 'Tr\u00fa vom Forstwald, DIM 2009 V1', desc: 'Tr\u00fa vom Forstwald - R\u00fana Einarsdottir-Zingsheim: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101256, thumb: 'http://i.ytimg.com/vi/vgHUJcXG6hs/0.jpg', title: 'Err\u00f3 vom Freyelhof, DIM 2009 V1', desc: 'Err\u00f3 vom Freyelhof - Johanna P\u00f6lzelbauer: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101254, thumb: 'http://i.ytimg.com/vi/zwcp0eN847A/0.jpg', title: 'Baldur von Godemoor, DIM 2008 T1', desc: 'Baldur von Godemoor - Christina Kohlbecker: T1 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101253, thumb: 'http://i.ytimg.com/vi/yF4R2yqAYTQ/0.jpg', title: 'Vanadis fr\u00e1 Litla-H\u00fasi\u00f0, NL 2009 Breeding', desc: 'Vanadis fr\u00e1 Litla-H\u00fasi\u00f0 - Erik Spee: Mare, FIZO keuring Oirschot April 2009 Conformation: 8.03 Ridden abilities: 7.83 Total: 7.91'});
	cvids_196713.push({vid:101252, thumb: 'http://i.ytimg.com/vi/lZ1p_pJIJ74/0.jpg', title: 'L\u00edna von der Elschenau, DTM09 Breeding', desc: 'L\u00edna von der Elschenau - Jolly Schrenk: Mare, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 8.18 Ridden Abilities: 8.08 Total: 8.12'});
	cvids_196713.push({vid:101251, thumb: 'http://i.ytimg.com/vi/rNgxDveBs_4/0.jpg', title: 'R\u00e1n von Dalum, DTM09', desc: 'R\u00e1n von Dalum - Andreas Trappe: Mare, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 8.14 Ridden Abilities: 9.79 Total: 7.93'});
	cvids_196713.push({vid:101250, thumb: 'http://i.ytimg.com/vi/kMfpYGEaIvM/0.jpg', title: 'Jarl fra Midkrika, DIM 2008 T1', desc: 'Jarl fra Midkrika Lucia Koch: T1 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101249, thumb: 'http://i.ytimg.com/vi/LVj5JJIHJfI/0.jpg', title: 'Darri vom Lipperthof, DIM 2009 V1', desc: 'Darri vom Lipperthof - Steffi Kleis: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101248, thumb: 'http://i.ytimg.com/vi/dhze882NiKA/0.jpg', title: 'H\u00f6r\u00f5ur fr\u00e1 Kolneset, DIM 2009 V1', desc: 'H\u00f6r\u00f5ur fr\u00e1 Kolneset - Nils-Christian Larsen: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101247, thumb: 'http://i.ytimg.com/vi/yBPDLOtFn2w/0.jpg', title: 'Naddur vom Schluensee, DIM 2008 F1', desc: 'Naddur vom Schluensee - Uli Reber: F1 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101246, thumb: 'http://i.ytimg.com/vi/X3MjYqBcm3M/0.jpg', title: 'Ur\u00f0ur fr\u00e1 Gunnarsholti, DIM 2008 T1', desc: 'Ur\u00f0ur fr\u00e1 Gunnarsholti - Uli Reber: T1 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101244, thumb: 'http://i.ytimg.com/vi/tL_6Smi84bs/0.jpg', title: 'Gandur von der Igelsburg, DIM 2009 ft2', desc: 'Gandur von der Igelsburg - Jolly Schrenk: T2 finals Deutsche Islandpferde Meisterschaft 2009 Gest\u00fct Osterbyholz.'});
	cvids_196713.push({vid:101243, thumb: 'http://i.ytimg.com/vi/6oLxtjya_4E/0.jpg', title: 'Manni vom Forstwald, DTM09', desc: 'Manni vom Forstwald - R\u00fana Einarsd\u00f3ttir Zingsheim: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 8.11 Ridden Abilities: 7.75 Total: 7.89'});
	cvids_196713.push({vid:101242, thumb: 'http://i.ytimg.com/vi/lRfoAd5S6Tk/0.jpg', title: 'Bjalli von Berlar, DTM09', desc: 'Bjalli von Berlar - Jolly Schrenk: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.85 Ridden Abilities: 8.30 Total: 8.12'});
	cvids_196713.push({vid:101241, thumb: 'http://i.ytimg.com/vi/zlrsvlHh3zY/0.jpg', title: 'Alfrod\u00fcll fr\u00e1 Drottnasteini, FE 2008', desc: 'Alfrod\u00fcll fr\u00e1 Drottnasteini. Futurity Viergangproef Fokkerij Event 2008 Groesbeek. Jury: Andreas Trappe'});
	cvids_196713.push({vid:101240, thumb: 'http://i.ytimg.com/vi/7piEyhEGtDE/0.jpg', title: 'Baltasar vom Freyelhof, DIM 2009 ff1', desc: 'Baltasar vom Freyelhof - Haukur Tryggvason: F1 finals Deutsche Islandpferde Meisterschaft 2009 Gest\u00fct Osterbyholz.'});
	cvids_196713.push({vid:101238, thumb: 'http://i.ytimg.com/vi/5IwqyKNJKzw/0.jpg', title: 'Dj\u00e1sn Svartursd\u00f3ttir fr\u00e1 L\u00e1lendi, DTM09', desc: 'Dj\u00e1sn Svartursd\u00f3ttir fr\u00e1 L\u00e1lendi - R\u00fana Einarsd\u00f3ttir Zingsheim: Mare, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 8.14 Ridden Abilities: 7.78 Total: 7.93'});
	cvids_196713.push({vid:101237, thumb: 'http://i.ytimg.com/vi/7O8l2UxudFs/0.jpg', title: 'F\u00fani fra Vind\u00e1si, OD10', desc: 'F\u00fani fra Vind\u00e1si - Elias \u00c1rnason: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101236, thumb: 'http://i.ytimg.com/vi/vOUBqtTsTPc/0.jpg', title: 'Gandur von der Igelsburg, DIM 2009 V1', desc: 'Gandur von der Igelsburg - Jolly Schrenk: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101235, thumb: 'http://i.ytimg.com/vi/dHy3BoJDGVg/0.jpg', title: 'Pan vom Nahetal, DTM09', desc: 'Pan vom Nahetal - Clemens Gessner: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.79 Ridden Abilities: 7.60 Total: 7.68'});
	cvids_196713.push({vid:101234, thumb: 'http://i.ytimg.com/vi/eBpLMQ7yCoQ/0.jpg', title: 'S\u00fdn van de Meulenkamp, DTM09', desc: 'S\u00fdn van de Meulenkamp - Anna Eschner: Mare, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.74 Ridden Abilities: 7.35 Total: 7.51'});
	cvids_196713.push({vid:101233, thumb: 'http://i.ytimg.com/vi/PrLvSIa1POc/0.jpg', title: '\u00d3skar fr\u00e1 Akureyri, OD10', desc: '\u00d3skar fr\u00e1 Akureyri - Sys Pileg\u00e5rd: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101232, thumb: 'http://i.ytimg.com/vi/PXX_DJgyw_A/0.jpg', title: 'Gina vom Pfaffenbuck, DIM 2009 V1', desc: 'Gina vom Pfaffenbuck - Susanne Hierlmeier: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101231, thumb: 'http://i.ytimg.com/vi/KhDc3C9DkN0/0.jpg', title: 'K\u00e1inn fr\u00e1 Feti, DIM 2008 T1', desc: 'K\u00e1inn fr\u00e1 Feti - Jens F\u00fcchtenschnieder: T1 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101230, thumb: 'http://i.ytimg.com/vi/1SUmuoQgnB0/0.jpg', title: 'Vaskur mit Lena und Gandur mit Jolly, DIM 2009 fv1', desc: 'Vaskur vom Lindenhof - Lena Trappe, Gandur von der Igelsburg - Jolly Schrenk: V1 finals Deutsche Islandpferde Meisterschaft 2009 Gest\u00fct Osterbyholz.'});
	cvids_196713.push({vid:101229, thumb: 'http://i.ytimg.com/vi/DXCDtZp_qM8/0.jpg', title: 'Tigull vom Kronshof, DIM 2009 V1', desc: 'Tigull vom Kronshof - Frauke Schenzel: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz.'});
	cvids_196713.push({vid:101228, thumb: 'http://i.ytimg.com/vi/AKKmrgZcw4A/0.jpg', title: 'Blettur von Ellenbach, DTM09', desc: 'Blettur von Ellenbach - D\u00f6rte Mitgau: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 7.94 Ridden Abilities: 7.90 Total: 7.92'});
	cvids_196713.push({vid:101227, thumb: 'http://i.ytimg.com/vi/IhV6P6SPZ3I/0.jpg', title: 'Stefnir vom Kreiswald, DTM09', desc: 'Stefnir vom Kreiswald - Daniel Berres: Stallion, Dritteltreffen Mitte 2009 T\u00f6ltmyllan, Lindlar Conformation: 8.29 Ridden Abilities: 7.59 Total: 7.87'});
	cvids_196713.push({vid:101226, thumb: 'http://i.ytimg.com/vi/jnGkogObDmo/0.jpg', title: 'Snerra fr\u00e1 Nyttland, NL 2009 Breeding', desc: 'Snerra fr\u00e1 Nyttland - Tom Buytelaar: Mare, FIZO keuring Oirschot April 2009 Conformation: 7.87 Ridden abilities: 7.26 Total: 7.51'});
	cvids_196713.push({vid:101225, thumb: 'http://i.ytimg.com/vi/2EVTQLe0_Ls/0.jpg', title: 'Hrani vom Schlo\u00dfberg, DIM 2008 T2', desc: 'Hrani vom Schlo\u00dfberg - Styrmir \u00c1rnason: T2 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101224, thumb: 'http://i.ytimg.com/vi/TccEc0ag6yM/0.jpg', title: 'Kyndill fra Tjenergaarden, OD2010 F1', desc: 'Kyndill fra Tjenergaarden - Dorte Rasmussen: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101223, thumb: 'http://i.ytimg.com/vi/Xtzdr3IOpPE/0.jpg', title: '\u00d6rn fr\u00e1 Efri-Gegnish\u00f3lum, OD2010 F1', desc: '\u00d6rn fr\u00e1 Efri-Gegnish\u00f3lum - Julie Christiansen: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101222, thumb: 'http://i.ytimg.com/vi/bx6nvM1V7eY/0.jpg', title: 'Lj\u00f3svaki fra Akureyri, OD2010 F1', desc: 'Lj\u00f3svaki fra Akureyri - Stine Helene S\u00f8rv\u00e5g: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101221, thumb: 'http://i.ytimg.com/vi/f6X7ylk54Xc/0.jpg', title: 'H\u00f6r\u00f0ur fra Kolneset, OD10', desc: 'H\u00f6r\u00f0ur fra Kolneset - Nils Christian Larsen: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101220, thumb: 'http://i.ytimg.com/vi/RmT6cUAQ130/0.jpg', title: 'Hrani vom Schlo\u00dfberg, OD2010 F1', desc: 'Hrani vom Schlo\u00dfberg - Styrmir Arnasson: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101219, thumb: 'http://i.ytimg.com/vi/C6bUWwHx6u8/0.jpg', title: 'Albert fr\u00e1 Strandarh\u00f6f\u00f0i, OD2010 F1', desc: 'Albert fr\u00e1 Strandarh\u00f6f\u00f0i - Dennis Hedebo Johansen: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101218, thumb: 'http://i.ytimg.com/vi/_4yMunf63q4/0.jpg', title: 'S\u00f6gn fra Au\u00f0sholtshj\u00e1leigu, OD2010 F1', desc: 'S\u00f6gn fra Au\u00f0sholtshj\u00e1leigu - Steffi Kleis: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101217, thumb: 'http://i.ytimg.com/vi/aSrcktxyZGE/0.jpg', title: 'Katla, DIM09', desc: 'Katla fra Lia i Flatanger - \u00feor\u00f0ur \u00feorgeirsson Deutsche Islandpferde Meisterschaft, Osterbyholz 10-07-2009 www.lalendi.nl'});
	cvids_196713.push({vid:101216, thumb: 'http://i.ytimg.com/vi/PGRa8RPOdew/0.jpg', title: 'V\u00e1r fr\u00e1 Vestra-Fiflholti, OD10', desc: 'V\u00e1r fr\u00e1 Vestra-Fiflholti - Marianne Lumbye Larsen: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101215, thumb: 'http://i.ytimg.com/vi/pBYLe2VkSZc/0.jpg', title: 'Karri fra K\u00e1lfsst\u00f6\u00f0um, OD10', desc: 'Karri fra K\u00e1lfsst\u00f6\u00f0um - Elias Arnason: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101214, thumb: 'http://i.ytimg.com/vi/bd0Y57dypVE/0.jpg', title: 'P\u00e1 fra Eyfjord, OD10', desc: 'P\u00e1 fra Eyfjord - Anne Stine Haugen: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101213, thumb: 'http://i.ytimg.com/vi/w4tAi6J8ARU/0.jpg', title: 'Midill fra Skardi, OD10', desc: 'Midill fra Skardi - Hans Christian L\u00f8we: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101212, thumb: 'http://i.ytimg.com/vi/S1s-SlxqJmE/0.jpg', title: 'Geisli fr\u00e1 G\u00fdgjarh\u00f3li, OD10', desc: 'Geisli fr\u00e1 G\u00fdgjarh\u00f3li - Vibeke Kolsch: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101211, thumb: 'http://i.ytimg.com/vi/97dmjJf_6eI/0.jpg', title: 'Brj\u00e1nn fr\u00e1 Reykjavik, DIM 2008 T1', desc: 'Brj\u00e1nn fr\u00e1 Reykjavik - Irene Reber: T1 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101210, thumb: 'http://i.ytimg.com/vi/U3A7XJCBcBc/0.jpg', title: 'Hvinur fr\u00e1 Holtsm\u00fala, DIM 2009 ft1', desc: 'Hvinur fr\u00e1 Holtsm\u00fala - J\u00f3hann R. Sk\u00falason: T1 finals Deutsche Islandpferde Meisterschaft 2009 Gest\u00fct Osterbyholz.'});
	cvids_196713.push({vid:101209, thumb: 'http://i.ytimg.com/vi/ImQSR2xehRo/0.jpg', title: 'Lipurt\u00e1, DIM09', desc: 'Lipurt\u00e1 vom Lipperthof \u00feor\u00f0ur \u00feorgeirsson Deutsche Islandpferde Meisterschaft, Osterbyholz 10-07-2009 www.lalendi.nl'});
	cvids_196713.push({vid:101208, thumb: 'http://i.ytimg.com/vi/8HpJdpMbbs4/0.jpg', title: 'Kolgrimur fr\u00e5n Sl\u00e4tterne, OD10', desc: 'Kolgrimur fr\u00e5n Sl\u00e4tterne - Tina Kalmo Pedersen: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101207, thumb: 'http://i.ytimg.com/vi/NpC7pt-mBzY/0.jpg', title: 'T\u00f3nn fra \u00d3lafsbergi, OD10', desc: 'T\u00f3nn fra \u00d3lafsbergi - Rasmus M\u00f8ller Jensen: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101206, thumb: 'http://i.ytimg.com/vi/BUiKHA54EqA/0.jpg', title: 'Fl\u00f6gri fra H\u00e1b\u00e6, OD10', desc: 'Fl\u00f6gri fra H\u00e1b\u00e6 - Susanne Larsen: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101205, thumb: 'http://i.ytimg.com/vi/YApvz08fCu4/0.jpg', title: 'Magnus fra Dalur, OD10', desc: 'Magnus fra Dalur - Katrine Langvad: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101204, thumb: 'http://i.ytimg.com/vi/3Cr7FfaQ5TI/0.jpg', title: 'H\u00f6f\u00f0i fr\u00e1 Snallsteinsh\u00f6f\u00f0a 2, OD10', desc: 'H\u00f6f\u00f0i fr\u00e1 Snallsteinsh\u00f6f\u00f0a 2 - Johann R. Skulason: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101203, thumb: 'http://i.ytimg.com/vi/N60jr80ibfU/0.jpg', title: 'Keilir fr\u00e1 Mi\u00f0sitju - Offspring', desc: 'World Cup 2010, Odense: Keilir fr\u00e1 Mi\u00f0sitju T\u00f3nn fr\u00e1 Au\u00f0sholtshjaleigu Dalvar fr\u00e1 Au\u00f0sholtshjaleigu Tenor fr\u00e1 Au\u00f0sholtshjaleigu Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101202, thumb: 'http://i.ytimg.com/vi/N0YXCLLSuKQ/0.jpg', title: 'Jarl fra Midkrika, DIM 2008 V1', desc: 'Jarl fra Midkrika - Lucia Koch: V1 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:101201, thumb: 'http://i.ytimg.com/vi/270GOfamHOE/0.jpg', title: 'Kolfaxi fra Lilleheden, OD10', desc: 'Kolfaxi fra Lilleheden - Agnar Snorri Stefansson: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101200, thumb: 'http://i.ytimg.com/vi/Q0v8vt_vfHA/0.jpg', title: 'Muni fra Kvistum, OD10', desc: 'Muni fra Kvistum - Anne Stine Haugen: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101199, thumb: 'http://i.ytimg.com/vi/4fJI4KYUdfs/0.jpg', title: 'Vord\u00eds, DIM09', desc: 'Vord\u00eds vom Kronshof - Frauke Schenzel Deutsche Islandpferde Meisterschaft, Osterbyholz 10-07-2009 www.lalendi.nl'});
	cvids_196713.push({vid:101198, thumb: 'http://i.ytimg.com/vi/XAEESRbL2O8/0.jpg', title: 'Gumi fr\u00e1 Strandarh\u00f6f\u00f0i, NC 2008 T1', desc: 'Gumi fr\u00e1 Strandarh\u00f6f\u00f0i - Dorte Rasmussen: Nordic Championships 2008 T1 preliminary www.lalendi.nl'});
	cvids_196713.push({vid:101197, thumb: 'http://i.ytimg.com/vi/YJPoXN3nUWg/0.jpg', title: 'Lina, DIM09', desc: 'Lina von der Elschenau - Jolly Schrenk. Deutsche Islandpferde Meisterschaft, Osterbyholz 10-07-2009 www.lalendi.nl'});
	cvids_196713.push({vid:101196, thumb: 'http://i.ytimg.com/vi/p25_R3hTP70/0.jpg', title: 'Jarl fr\u00e1 Mi\u00f0krika - Offspring', desc: 'World Cup 2010, Odense: Jarl fr\u00e1 Mi\u00f0krika Globus fra Jakobsgaarden B\u00e1ra fra Solbakik Gn\u00e1 fra Jakobsgaarden Searchpage: www.lalendi.nl Lisa fra Jakobsgaarden Pilgrim fra Kleiva'});
	cvids_196713.push({vid:101195, thumb: 'http://i.ytimg.com/vi/y4sUI_VeqI4/0.jpg', title: 'Viktor fra Diisa, OD10', desc: 'Viktor fra Diisa - Isabelle Felsum: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101194, thumb: 'http://i.ytimg.com/vi/wpP-K08SrUo/0.jpg', title: 'Fylkir van de Meulenkamp, DIM 2008 F1', desc: 'Fylkir van de Meulenkamp - Manuela Lekkerkerker: F1 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen. Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101193, thumb: 'http://i.ytimg.com/vi/hljnNbQRBkA/0.jpg', title: 'T\u00f6fri van de Waaldijk, NL 2009 Breeding', desc: 'T\u00f6fri van de Waaldijk - Sarie van de Boogaard: Stallion, FIZO keuring Oirschot April 2009 Conformation: 7.78 Ridden abilities: 7.32 Total: 7.50 Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101191, thumb: 'http://i.ytimg.com/vi/jVbyOnikAEQ/0.jpg', title: 'Skv\u00edsa vom Hrafnsholt, DIM 2009 V1', desc: 'Skv\u00edsa vom Hrafnsholt - Annelie Gl\u00e4ssing: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101190, thumb: 'http://i.ytimg.com/vi/8OPKW4iB3NM/0.jpg', title: 'Snorri fr\u00e1 L\u00e1lendi, EX 2008 V2', desc: 'Snorri fr\u00e1 L\u00e1lendi - Annefloor Bouwman, Exloo 2008 V2 preliminary. Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101189, thumb: 'http://i.ytimg.com/vi/xiHhcKv7lq0/0.jpg', title: 'Nj\u00e1la fr\u00e1 K\u00e1lfsholti, OD2010 F1', desc: 'Nj\u00e1la fr\u00e1 K\u00e1lfsholti - Samantha Leidesdorff: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101188, thumb: 'http://i.ytimg.com/vi/MI-Bqk0WLoc/0.jpg', title: 'Tindur fr\u00e1 Varmal\u00e6k, OD2010 F1', desc: 'Tindur fr\u00e1 Varmal\u00e6k - Stian Pedersen: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101187, thumb: 'http://i.ytimg.com/vi/WteVb2pKDi8/0.jpg', title: 'Hvellur fr\u00e1 Herri\u00f0arholi, OD2010 F1', desc: 'Hvellur fr\u00e1 Herri\u00f0arholi - Nils-Christian Larsen: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101186, thumb: 'http://i.ytimg.com/vi/SrMWi-PgSTM/0.jpg', title: 'Haraldur vom Kreiswald, DIM 2009 V1', desc: 'Haraldur vom Kreiswald - Steffie Kleis: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101185, thumb: 'http://i.ytimg.com/vi/jvpWn98jvNg/0.jpg', title: 'Reynir fr\u00e1 H\u00f3lsh\u00fasum, WC 2007 T1', desc: 'Reynir fr\u00e1 H\u00f3lsh\u00fasum - Emma Wahlstedt: T1 Preliminary, position 18 World Championships 2007 Oirschot. Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101184, thumb: 'http://i.ytimg.com/vi/I_W_q_PcQXY/0.jpg', title: 'Gari vom Waldhof, LIN 2008', desc: 'Gari vom Waldhof, Lindenhof 2008 V: Gilling vom Waldhof M: Eva von Harperscheid Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101183, thumb: 'http://i.ytimg.com/vi/Nm_cRJ6SR0Y/0.jpg', title: 'Eldj\u00e1rn vom Mandelbachtal, WC 2007 T2', desc: 'Eldj\u00e1rn vom Mandelbachtal - Mieke van Herwijnen: T2 Preliminary, position 27 World Championships 2007 Oirschot. Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101182, thumb: 'http://i.ytimg.com/vi/ldcH0A9Yv8Q/0.jpg', title: 'Brj\u00e1nn fr\u00e1 Reykjavik, DIM 2009 V1', desc: 'Brj\u00e1nn fr\u00e1 Reykjavik - Irene Reber: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101181, thumb: 'http://i.ytimg.com/vi/ddMR5E0xQMM/0.jpg', title: 'T\u00f3nn fr\u00e1 Hala, NC 2008 V1Y', desc: 'T\u00f3nn fr\u00e1 Hala - Edda Hrund Hinriksd\u00f3ttir, Nordic Championships 2008 V1Y preliminary. Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101180, thumb: 'http://i.ytimg.com/vi/h-9R58hNHz4/0.jpg', title: 'Bjalli von Berlar, OD2010 F1', desc: 'Bjalli von Berlar - Jolly Schrenk: F1 Preliminary, World Cup 2010 Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101179, thumb: 'http://i.ytimg.com/vi/FUEdnXmkgmE/0.jpg', title: 'S\u00e6li fr\u00e1 Holtsm\u00fala, NC 2006 T1', desc: 'S\u00e6li fr\u00e1 Holtsm\u00fala - Anne Balslev: T1 Preliminary Nordic Championships 2006, Herning. Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101178, thumb: 'http://i.ytimg.com/vi/Px7wuaZEX2I/0.jpg', title: 'Steini fr\u00e1 Ekastorp, NC 2006 T1', desc: 'Steini fr\u00e1 Ekastorp - Elin Sverrirsd\u00f3ttir: T1 Preliminary Nordic Championships 2006, Herning. Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101177, thumb: 'http://i.ytimg.com/vi/PwsvDc7N3oU/0.jpg', title: 'Glotti fr\u00e1 Sveinatungu, OD10', desc: 'Glotti fr\u00e1 Sveinatungu - Joanis Hoygardinum: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101176, thumb: 'http://i.ytimg.com/vi/qqRMhRWCTfE/0.jpg', title: 'Randver fr\u00e1 Oddh\u00f3li, OD10', desc: 'Randver fr\u00e1 Oddh\u00f3li - Ingeborg Pedersen: World Cup 2010, Odense. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101175, thumb: 'http://i.ytimg.com/vi/s5usEQYnbas/0.jpg', title: 'Eik vom Freyelhof, DIM 2009 V1', desc: 'Eik vom Freyelhof - Haukur Tryggvason: V1 Preliminary Deutsche Islandpferde Meisterschaft 2009, Osterbyholz. Searchpage: www.lalendi.nl'});
	cvids_196713.push({vid:101174, thumb: 'http://i.ytimg.com/vi/bjJtB3Sl6OE/0.jpg', title: 'Eitill fr\u00e1 Vind\u00e1si, NC 2008 F1', desc: 'Eitill fr\u00e1 Vind\u00e1si - Eyj\u00f3lfur \u00deorsteinsson, Nordic Championships 2008 F1 preliminary. Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101172, thumb: 'http://i.ytimg.com/vi/K1jRWtjxzE0/0.jpg', title: 'Kr\u00f3kur fr\u00e1 Efri-Rau\u00f0al\u00e6k, NC 2008 F1', desc: 'Kr\u00f3kur fr\u00e1 Efri-Rau\u00f0al\u00e6k - Fredrik Rydstr\u00f6m, Nordic Championships 2008 F1 preliminary. Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101171, thumb: 'http://i.ytimg.com/vi/5_yYIx4Ppq8/0.jpg', title: 'Gigjar vom Waldhof, LIN 2008', desc: 'Gigjar vom Waldhof, Lindenhof 2008 V: Gilling vom Waldhof M: Dama fra Hindisvik Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101170, thumb: 'http://i.ytimg.com/vi/fCJRUCZ8e7Q/0.jpg', title: 'Evadis vom Freyelhof, DIM 2008 F1', desc: 'Evadis vom Freyelhof - Haukur Tryggvason: F1 Vorentscheidung, Deutsche Islandpferde Meisterschaft 2008 Kaufungen Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101169, thumb: 'http://i.ytimg.com/vi/lne0whK9AVY/0.jpg', title: 'Broka vom Wiesenhof, WC2007 Breeding', desc: 'Broka vom Wiesenhof: Mares, six years. Conformation: 8.05 Riding Ability: 8.50 Mark: 8.32 Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101168, thumb: 'http://i.ytimg.com/vi/qkrnfkzmWRo/0.jpg', title: 'Boreas fr\u00e1 Breuerson, NL 2009 Breeding', desc: 'Boreas fr\u00e1 Breuerson - Yoni Blom: Stallion, FIZO keuring Oirschot April 2009 Conformation: 7.94 Ridden Abilities: 7.81 Total: 7.86 Lalendi searchpage lalendi.webklik.nl'});
	cvids_196713.push({vid:101166, thumb: 'http://i.ytimg.com/vi/UKxiEGDC6fo/0.jpg', title: 'T1 icelandic WC Brunnadern 2009 fast t\u00f6lt 2', desc: ''});
	cvids_196713.push({vid:101072, thumb: 'http://i.ytimg.com/vi/bzkTAFmcZb0/0.jpg', title: 'Islandpferde Weltmeisterschaft 2009 CH', desc: 'Islandpferde in der Fu\u00dfg\u00e4ngerzone'});
	cvids_196713.push({vid:101071, thumb: 'http://i.ytimg.com/vi/TmbDTwMuETc/0.jpg', title: 'Islandpferde-WM 2009 - F1-Finale - isibless', desc: 'Impressionen vom F\u00fcnfgang-Finale auf der WM 2009.'});
	cvids_196713.push({vid:101070, thumb: 'http://i.ytimg.com/vi/IzH0uYX8xCQ/0.jpg', title: 'Islandpferde-WM 2009 - T2-Finale - isibless', desc: 'T2-Finale bei der WM 2009.'});
	cvids_196713.push({vid:101069, thumb: 'http://i.ytimg.com/vi/EpXNS60K90o/0.jpg', title: 'Andra fra Taasaasen.mpg', desc: 'Islandshest, icelandic horse'});
	cvids_196713.push({vid:101068, thumb: 'http://i.ytimg.com/vi/_ZET8QIVTTs/0.jpg', title: 'H\u00f6r\u00f0ur fra Kolneset', desc: 'H\u00f6r\u00f0ur fra Kolneset, Herning 2009 Sired by M\u00f6kkur fr\u00e1 Varmal\u00e6k'});
	cvids_196713.push({vid:101067, thumb: 'http://i.ytimg.com/vi/Uk0ovFMbyoQ/0.jpg', title: 'Magnus fra Dalur', desc: 'Magnus fra Dalur, Herning 2009 Sired by P\u00f3stur fra Dalur'});
	cvids_196713.push({vid:101066, thumb: 'http://i.ytimg.com/vi/UKxiEGDC6fo/0.jpg', title: 'T1 icelandic WC Brunnadern 2009 fast t\u00f6lt 2', desc: ''});
	cvids_196713.push({vid:101063, thumb: 'http://i.ytimg.com/vi/UTORD9gcbdU/0.jpg', title: 'World champion T2 2009 Kolgrimur fr\u00e5n Sl\u00e4tterne', desc: 'Tina Kalmo Pedersen [YR] [NO] - Kolgrimur fr\u00e5n Sl\u00e4tterne 8.34 ANY 7.5 - 8.0 - 8.0 - 8.5 - 8.5 = 8.17 SLOW 7.0 - 8.0 - 7.0 - 6.5 - 7.5 = 7.17 NO R 8.5 - 9.0 - 9.0 - 9.0 - 9.0 = 9.00'});
	cvids_196713.push({vid:101062, thumb: 'http://i.ytimg.com/vi/SdmLrpHQiSg/0.jpg', title: 'Kiljan fr\u00e1 Blesast\u00f6\u00f0um 1A NC 2008 T1', desc: 'J\u00f3hann Sk\u00falason - Kiljan fr\u00e1 Blesast\u00f6\u00f0um 1A Nordic Championships 2008 T1 preliminary'});
	cvids_196713.push({vid:101061, thumb: 'http://www.dik.nl/util/fetchurl?http%3A%2F%2F3.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3D88ad0312ea61f053%26offsetms%3D5000%26itag%3Dw160%26hl%3Dnl%26sigh%3D__-ENpv-ZLcO6tYCitaziJityv_oM%3D', title: 'WK 2005 T1 A-finale', desc: 'Icelandic horses WC 2005 T1 finals ...'});
	cvids_196713.push({vid:100493, thumb: 'http://www.dik.nl/util/fetchurl?http%3A%2F%2F1.gvt0.com%2FThumbnailServer2%3Fapp%3Dvss%26contentid%3Dbd0655899375a375%26offsetms%3D185000%26itag%3Dw160%26hl%3Dnl%26sigh%3D__YECXc0hWr47rWbPaItDM0tOMlOU%3D', title: ' and riders fall trough ice', desc: 'Icelandic horses and riders fall trough ice at a local horse show'});
	cvids_196713.push({vid:100492, thumb: 'http://ts.vimeo.com.s3.amazonaws.com/467/867/46786748_640.jpg', title: 'Icelandic Horses at High Speed', desc: 'This is the Landsmot 2006, Iceland\'s national competition held every 2 years.  Notice how smooth the riders are sitting, almost as if they are on wheels.  This is called the tolt, one of the five gaits of these ancient horses.  Iceland, with a population of only 300,000 people, has over 80,000 horses! The horse is a very important part of their culture. You can see a lot more Icelandic horse video by visiting http://hestakaup.com'});
	cvids_196713.push({vid:100491, thumb: 'http://i.ytimg.com/vi/nTlQea5ZpJU/0.jpg', title: 'isi-aktuell @ Islandpferde WM 2009 in Brunnadern', desc: 'Kleiner Schwenk \u00fcbers Turniergel\u00e4nde. Fotos aller Reiter und Pr\u00fcfungen gibts unter www.isi-aktuell.de'});
	cvids_196713.push({vid:100489, thumb: 'http://i.ytimg.com/vi/3LhHkYAXFv4/0.jpg', title: 'WC 2009 Icelandic Horses P2 Noortje de Laat NL', desc: 'WC 2009 Icelandic Horses P2 speedpass Noortje de Laat [NL] M\u00e1ni fr\u00e1 Innri-Kleif 1ST 8.17 2ND 8.08'});
	cvids_196713.push({vid:100488, thumb: 'http://i.ytimg.com/vi/xnpDVOwjfW8/0.jpg', title: 'Vanadis fra Litla-Husid: Ridden Abilities WC 2009 Brunnadern', desc: 'Vanadis fra Litla-Husid, 7 year old mare, is shown at the WC Icelandic Horses august 2009, in the breeding competition, (mares seven years and older) This is a video of the ridden abilities, the rider is Sigurdur Matthiasson.'});
	cvids_196713.push({vid:100487, thumb: 'http://i.ytimg.com/vi/0gT3kIlUibY/0.jpg', title: 'T1 icelandic horse wc brunnadern 2009 2. part', desc: ''});
	cvids_196713.push({vid:100486, thumb: 'http://i.ytimg.com/vi/v7i0F9t7mXU/0.jpg', title: 'WC 2009 Icelandic Horses P2 Jaap Groven NL', desc: 'WC 2009 Icelandic Horses P2 speedpass Jaap Groven [NL] Gimsteinn fr\u00e1 Sk\u00e1ney 1ST 9.17 2ND 8.50'});
	cvids_196713.push({vid:100485, thumb: 'http://i.ytimg.com/vi/IBf7vbxl3Is/0.jpg', title: 'WC 2009 Icelandic Horses P1 Sigur\u00f0ur Marinusson NL', desc: 'WC 2009 Icelandic Horses P1 Pace Race 250 m Sigur\u00f0ur Marinusson [NL] Eilimi von Lindenhof 1ST 21.92 2ND 21.68'});
	cvids_196713.push({vid:100484, thumb: 'http://i.ytimg.com/vi/5x1vmA5IJcg/0.jpg', title: 'WC ICELANDIC HORSES 2009 B final 4 Gait', desc: 'Oncoming disaster nicely resolved by Icelandic rider'});
	cvids_196713.push({vid:100483, thumb: 'http://i.ytimg.com/vi/liTsod2fyiY/0.jpg', title: 'WC 2009 Icelandic Horses T1   Tolt   A Final', desc: ''});
	cvids_196713.push({vid:100482, thumb: 'http://i.ytimg.com/vi/PxuQrdi0R8k/0.jpg', title: 'WC 2009 Icelandic Horses F1 Five Gait A Final Racing Pace highlights and Ceremony', desc: 'WC 2009 Icelandic Horses Ceremony F1 Five Gait A Final including racing pace highlights'});
	cvids_196713.push({vid:100481, thumb: 'http://i.ytimg.com/vi/0gT3kIlUibY/0.jpg', title: 'T1 icelandic horse wc brunnadern 2009 2. part', desc: ''});
	cvids_196713.push({vid:18197, thumb: 'http://i.ytimg.com/vi/PQeuZLwKGoY/0.jpg', title: 'Agla fr\u00e1 Aldenghoor - Ralf Wohllaib - isibless', desc: 'Agla fr\u00e1 Aldenghoor, niederl\u00e4ndisch gezogene Stute, geritten von Ralf Wohllaib. 12. Februar 2009, Quelle: www.isibless.de'});
	cvids_196713.push({vid:18196, thumb: 'http://i.ytimg.com/vi/XqO389I3Alw/0.jpg', title: 'Eldur vom Schw\u00e4bischen Wald - Ralf Wohllaib - isibless', desc: 'Ralf Wohllaib stellt seinen Eldur vom Schw\u00e4bischen Wald erstmalig nach der Winterpause und seinem Spezialtraining vor. isibless-Video vom 12. Februar 2009.'});
	cvids_196713.push({vid:18000, thumb: 'http://i.ytimg.com/vi/N0YXCLLSuKQ/0.jpg', title: 'Jarl fra Midkrika, DIM 2008 V1', desc: 'Jarl fra Midkrika - Lucia Koch: V1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17998, thumb: 'http://i.ytimg.com/vi/kMfpYGEaIvM/0.jpg', title: 'Jarl fra Midkrika, DIM 2008 T1', desc: 'Jarl fra Midkrika  Lucia Koch: T1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17997, thumb: 'http://i.ytimg.com/vi/WJUZlAh9Zq8/0.jpg', title: 'Kiljan fr\u00e1 Blesast\u00f6\u00f0um NC2008 V1', desc: 'J\u00f3hann Sk\u00falason - Kiljan fr\u00e1 Blesast\u00f6\u00f0um 1A\nNordic Championships 2008 V1 preliminary'});
	cvids_196713.push({vid:17996, thumb: 'http://i.ytimg.com/vi/Gz3DUYwS4ik/0.jpg', title: 'Jarl fr\u00e1 Mi\u00f0krika, WC 2007 T1', desc: 'Jarl fr\u00e1 Mi\u00f0krika - Stian Pedersen: T1 Preliminary, position 3 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17995, thumb: 'http://i.ytimg.com/vi/RREd35DSgkM/0.jpg', title: '\u00d6r fr\u00e1 Prestsbakka NC2008 V1', desc: 'Heimir Gunnarsson - \u00d6r fr\u00e1 Prestsbakka\nNordic Championships 2008 V1 preliminary'});
	cvids_196713.push({vid:17994, thumb: 'http://i.ytimg.com/vi/IbrE_bPcMfA/0.jpg', title: 'WK 2005 V1 A-Finale', desc: 'V1 A-Finals, World Championships for Icelandic Horses 2005 Norrk\u00f6ping, Sweden'});
	cvids_196713.push({vid:17993, thumb: 'http://i.ytimg.com/vi/_-Q9fPcPLS4/0.jpg', title: 'Seth fra N\u00f8ddeg\u00e5rden, WC 2007 T1', desc: 'Seth fra N\u00f8ddeg\u00e5rden 2 - Helena A\u00f0alsteinsd\u00f3ttir: T1 Preliminary, position 6 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17992, thumb: 'http://i.ytimg.com/vi/NGKR_PpLZPA/0.jpg', title: 'N\u00e6pa vom Kronshof, WC 2007 T1', desc: 'N\u00e6pa vom Kronshof - Frauke Schenzel: T1 Preliminary, position 7 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17991, thumb: 'http://i.ytimg.com/vi/VsX4mGLZXM8/0.jpg', title: 'Rafn f. Vestra-Geldingaholti, NC 2008 V1Y', desc: 'Rafn fr\u00e1 Vestra-Geldingaholti - Tine Sand, \nNordic Championships 2008 V1Y preliminary. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17990, thumb: 'http://i.ytimg.com/vi/ucSywBhGdUs/0.jpg', title: 'Reynir fra H\u00f3lsh\u00fasum NC2008 T1', desc: 'Hjalti Gu\u00f0mundsson - Reynir fra H\u00f3lsh\u00fasum\nNordic Championships 2008 T1 preliminary'});
	cvids_196713.push({vid:17989, thumb: 'http://i.ytimg.com/vi/vKsliUPdfJk/0.jpg', title: '\u00d6r fr\u00e1 Prestsbakka, NC 2008 T1', desc: 'Heimir Gunnarsson - \u00d6r fr\u00e1 Prestsbakka\nNordic Championships 2008 T1 preliminary \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17988, thumb: 'http://i.ytimg.com/vi/2dZsxZmnqUo/0.jpg', title: 'Hvinur fr\u00e1 Holtsm\u00fala, WC 2007 V1', desc: 'Hvinur fr\u00e1 Holtsm\u00fala - J\u00f3hann R Sk\u00falason: V1 Preliminary, position 4 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17987, thumb: 'http://i.ytimg.com/vi/HP2nMN2PaKQ/0.jpg', title: 'Kormakur vom Lipperthof, DIM 2008 T1', desc: 'Kormakur vom Lipperthof - Steffi Kleis: T1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17986, thumb: 'http://i.ytimg.com/vi/zrN-jZXAYWw/0.jpg', title: 'H\u00e1kon vom Wiesenhof, WC 2007 T1', desc: 'H\u00e1kon vom Wiesenhof - Birga Wild: T1 Preliminary, position 4 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17985, thumb: 'http://i.ytimg.com/vi/PaPbPRlFv6I/0.jpg', title: 'Laxness vom St\u00f6rtal, WC 2007 V1', desc: 'Laxness vom St\u00f6rtal - Jolly Schrenk: V1 Preliminary, position 7 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17984, thumb: 'http://i.ytimg.com/vi/Hj5lWeDw6VY/0.jpg', title: 'Sold\u00e1n fr\u00e1 Hvitanesi NC2008 V1', desc: 'Helene Blom - Sold\u00e1n fr\u00e1 Hvitanesi\nNordic Championships 2008 V1 preliminary'});
	cvids_196713.push({vid:17983, thumb: 'http://i.ytimg.com/vi/rq8xdOD-sHY/0.jpg', title: 'Freyr fr\u00e1 Votm\u00fala 1, DIM 2008 F1', desc: 'Freyr fr\u00e1 Votm\u00fala 1 - Haukur Tryggvason: F1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen. \nLalendi searchpage http://lalendi.webklik.nl/page/home\nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17982, thumb: 'http://i.ytimg.com/vi/fNELjAoGgdE/0.jpg', title: 'Jarl fr\u00e1 Mi\u00f0krika, WC 2007 V1', desc: 'Jarl fr\u00e1 Mi\u00f0krika - Stian Pedersen: V1 Preliminary, position 1 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17981, thumb: 'http://i.ytimg.com/vi/35EUShbmbbs/0.jpg', title: 'Baltasar vom Freyelhof, DIM 2008 F1', desc: 'Baltasar vom Freyelhof - Haukur Tryggvason: F1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17980, thumb: 'http://i.ytimg.com/vi/IycULLy-N7o/0.jpg', title: 'WC 2007 V1 Finals', desc: 'World Championships 2007 V1 A-Finals'});
	cvids_196713.push({vid:17979, thumb: 'http://i.ytimg.com/vi/bKTCH78Jq-0/0.jpg', title: 'Oddur fr\u00e5n M\u00f6rt\u00f6, WC 2007 F1', desc: 'Oddur fr\u00e5n M\u00f6rt\u00f6 - Johan H\u00e4ggberg: F1 Preliminary, position 9 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17978, thumb: 'http://i.ytimg.com/vi/9_vV4QQNZio/0.jpg', title: 'Kraftur fr\u00e1 Bringu, WC 2007 T1', desc: 'Kraftur fr\u00e1 Bringu - \u00ff?\u00f3rarinn Eymundsson: T1 Preliminary, position 2 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17977, thumb: 'http://i.ytimg.com/vi/z0KeTuGXKSw/0.jpg', title: 'Asr\u00fan fr\u00e1 Ey, WC 2007 V1', desc: 'Asr\u00fan fr\u00e1 Ey - Ladina Sigurbj\u00f6rnsson-Foppa: V1 Preliminary, position 21 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17976, thumb: 'http://i.ytimg.com/vi/SdmLrpHQiSg/0.jpg', title: 'Kiljan fr\u00e1 Blesast\u00f6\u00f0um 1A NC 2008 T1', desc: 'J\u00f3hann Sk\u00falason - Kiljan fr\u00e1 Blesast\u00f6\u00f0um 1A\nNordic Championships 2008 T1 preliminary'});
	cvids_196713.push({vid:17975, thumb: 'http://i.ytimg.com/vi/2EVTQLe0_Ls/0.jpg', title: 'Hrani vom Schlo\u00dfberg, DIM 2008 T2', desc: 'Hrani vom Schlo\u00dfberg - Styrmir \u00ff?rnason: T2 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17974, thumb: 'http://i.ytimg.com/vi/zwcp0eN847A/0.jpg', title: 'Baldur von Godemoor, DIM 2008 T1', desc: 'Baldur von Godemoor - Christina Kohlbecker: T1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17973, thumb: 'http://i.ytimg.com/vi/CjATNaZVAjk/0.jpg', title: 'Kvika vom Forstwald NC2008 V1', desc: 'Nils-Christian Larsen - Kvika vom Forstwald\nNordic Championships 2008 V1 perliminary'});
	cvids_196713.push({vid:17972, thumb: 'http://i.ytimg.com/vi/WZDCquiw0a0/0.jpg', title: 'Leiri fr\u00e1 Br\u00fanast\u00f6\u00f0um, WC 2007 T1', desc: 'Leiri fr\u00e1 Br\u00fanast\u00f6\u00f0um - Andreas H\u00f6pfner: T1 Preliminary, position 16 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17971, thumb: 'http://i.ytimg.com/vi/wMHVFye5yH8/0.jpg', title: 'Err\u00f3 vom Freyelhof, DIM 2008 FV1', desc: 'Err\u00f3 vom Freyelhof - Johanna P\u00f6lzelbauer: V1 Finale,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17970, thumb: 'http://i.ytimg.com/vi/a524EgxLUoY/0.jpg', title: '\u00deeyr fr\u00e1 Akranesi, WC 2007 V1', desc: '\u00deeyr fr\u00e1 Akranesi - Unn Kroghen A\u00f0alsteinsson: V1 Preliminary, position 10 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17969, thumb: 'http://i.ytimg.com/vi/_M2eQxGhmi8/0.jpg', title: 'Svipur fr\u00e1 Upps\u00f6lum NC 2008 F1', desc: 'Svipur fr\u00e1 Upps\u00f6lum - Rasmus M\u00f8ller Jensen,\nNordic Championships 2008 F1 preliminary. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17968, thumb: 'http://i.ytimg.com/vi/eJmuPdVzNSI/0.jpg', title: '\u00feerna fr\u00e1 \u00fe\u00fafu, WC 2007 T2', desc: '\u00feerna fr\u00e1 \u00fe\u00fafu - Juliet ten Bokum: T2 Preliminary, position 29 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17967, thumb: 'http://i.ytimg.com/vi/fJH19eWH8VQ/0.jpg', title: 'Garri fr\u00e1 Reykjav\u00edk, WC 2007 Breeding', desc: 'Garri fr\u00e1 Reykjav\u00edk: \nStallions, seven years and older. \nConformation: 8.31 Riding Ability: 8.93 Mark: 8.68 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17966, thumb: 'http://i.ytimg.com/vi/xH1VGLRBLQk/0.jpg', title: 'Viljar fr\u00e1 Skar\u00f0i, WC 2007 T2', desc: 'Viljar fr\u00e1 Skar\u00f0i - Katie Brumpton: T2 Preliminary, position 18 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17964, thumb: 'http://i.ytimg.com/vi/vfFYZfAim2U/0.jpg', title: 'T\u00fdrson vom Saringhof, WC 2007 V1', desc: 'T\u00fdrson vom Saringhof - Yoni Blom: V1 Preliminary, position 10 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17963, thumb: 'http://i.ytimg.com/vi/r5yjv-dpiiE/0.jpg', title: 'Fenna vom Wiesenhof, WC 2007 T1', desc: 'Fenna vom Wiesenhof - Bernhard Podlech: T1 Preliminary, position 8 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17962, thumb: 'http://i.ytimg.com/vi/WovjmKURHEo/0.jpg', title: 'Stari fr\u00e5n Bredhall, WC 2007 Breeding', desc: 'Stari fr\u00e5n Bredhall: \nStallions, seven years and older. \nConformation: 8.64 Riding Ability: 8.25 Mark: 8.41 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17961, thumb: 'http://i.ytimg.com/vi/SXcOk6S7yg8/0.jpg', title: '\u00feor fr\u00e1 Ketu NC2008 T1', desc: 'Lilian Pedersen - \u00feor fr\u00e1 Ketu\nNordic Championships 2008 T1 preliminary'});
	cvids_196713.push({vid:17960, thumb: 'http://i.ytimg.com/vi/97dmjJf_6eI/0.jpg', title: 'Brj\u00e1nn fr\u00e1 Reykjavik, DIM 2008 T1', desc: 'Brj\u00e1nn fr\u00e1 Reykjavik - Irene Reber: T1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17959, thumb: 'http://i.ytimg.com/vi/TfDpa2SnRLk/0.jpg', title: 'Elgur vom Steinadlerhof, WC 2007 Breeding', desc: 'Elgur vom Steinadlerhof: \nStallions, seven years and older. \nConformation: 8.08 Riding Ability: 7.94 Mark: 7.99 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17958, thumb: 'http://i.ytimg.com/vi/YGt69AEVHpY/0.jpg', title: 'J\u00f3n fr\u00e1 Hala, WC 2007 V1', desc: 'J\u00f3n fr\u00e1 Hala - Chatrine Brusgaard: V1 Preliminary, position 8 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17957, thumb: 'http://i.ytimg.com/vi/pbLsfbUCyDw/0.jpg', title: 'Sikill fra Astedet 2, WC 2007 V1', desc: 'Sikill fra Astedet 2- Julie Christiansen: V1 Preliminary, position 25 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17956, thumb: 'http://i.ytimg.com/vi/7_bwPQ7jGZU/0.jpg', title: 'Err\u00f3 vom Freyelhof, DIM 2008 T1', desc: 'Err\u00f3 vom Freyelhof - Johanna P\u00f6lzelbauer: T1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17955, thumb: 'http://i.ytimg.com/vi/KhDc3C9DkN0/0.jpg', title: 'K\u00e1inn fr\u00e1 Feti, DIM 2008 T1', desc: 'K\u00e1inn fr\u00e1 Feti - Jens F\u00fcchtenschnieder: T1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17954, thumb: 'http://i.ytimg.com/vi/nsI3Tz0hFKs/0.jpg', title: '\u00deeyr fr\u00e1 Akranesi, WC 2007 T1', desc: '\u00deeyr fr\u00e1 Akranesi - Unn Kroghen A\u00f0alsteinsson: T1 Preliminary, position 10 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17953, thumb: 'http://i.ytimg.com/vi/yBPDLOtFn2w/0.jpg', title: 'Naddur vom Schluensee, DIM 2008 F1', desc: 'Naddur vom Schluensee - Uli Reber: F1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17952, thumb: 'http://i.ytimg.com/vi/ikU6mvDcgIA/0.jpg', title: 'Eik vom Freyelhof, DIM 2008 T1', desc: 'Eik vom Freyelhof - Haukur Tryggvason: T1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17951, thumb: 'http://i.ytimg.com/vi/LBMvXmzC7Hs/0.jpg', title: 'Vaskur vom Lindenhof, WC 2007 V1', desc: 'Vaskur vom Lindenhof - Lena Trappe: V1 Preliminary, position 3 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17950, thumb: 'http://i.ytimg.com/vi/AdFywGEuwrY/0.jpg', title: 'Bragi von Allenbach, WC 2007 T1', desc: 'Bragi von Allenbach - Alexandra Montan Gray: T1 Preliminary, position 4 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17949, thumb: 'http://i.ytimg.com/vi/lSVtMwIKPxo/0.jpg', title: 'Hrani vom Schlo\u00dfberg, DIM 2008 F1', desc: 'Hrani vom Schlo\u00dfberg - Styrmir \u00ff?rnason: F1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17948, thumb: 'http://i.ytimg.com/vi/MD2gXMKTKMk/0.jpg', title: 'Tigull vom Kronshof, DIM 2008 T2', desc: 'Tigull vom Kronshof - Frauke Schenzel: T2 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17947, thumb: 'http://i.ytimg.com/vi/oCEwd-ABX2s/0.jpg', title: 'Mist van de Waaldijk, WC 2007 V1', desc: 'Mist van de Waaldijk - Jessie Huijbers: V1 Preliminary, position 8 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17946, thumb: 'http://i.ytimg.com/vi/tTYl789oA78/0.jpg', title: 'Freyr vom Nordsternhof, WC 2007 F1', desc: 'Freyr vom Nordsternhof - R\u00fana Einarsd\u00f3ttir Zingsheim: F1 Preliminary, position 5 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17945, thumb: 'http://i.ytimg.com/vi/GZ8UmfZzrHA/0.jpg', title: 'Seth fra N\u00f8ddeg\u00e5rden 2, WC 2007 V1', desc: 'Seth fra N\u00f8ddeg\u00e5rden 2 - Helena A\u00f0alsteinsd\u00f3ttir: V1 Preliminary, position 5 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17944, thumb: 'http://i.ytimg.com/vi/FzbDGJEG7jQ/0.jpg', title: 'R\u00f3mur from B\u00fa\u00f0ardal NC 2008 F1', desc: 'R\u00f3mur from B\u00fa\u00f0ardal - Agnar Snorri Stef\u00e1nsson, \nNordic Championships 2008 F1 preliminary. Lalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17943, thumb: 'http://i.ytimg.com/vi/rlmO2CRUr6U/0.jpg', title: 'Sproti fr\u00e1 Hafrafellstungu, WC 2007 T1', desc: 'Sproti fr\u00e1 Hafrafellstungu - Johannes Hoyos: T1 Preliminary, position 14 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17942, thumb: 'http://i.ytimg.com/vi/ddMR5E0xQMM/0.jpg', title: 'T\u00f3nn fr\u00e1 Hala, NC 2008 V1Y', desc: 'T\u00f3nn fr\u00e1 Hala - Edda Hrund Hinriksd\u00f3ttir,\nNordic Championships 2008 V1Y preliminary. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17941, thumb: 'http://i.ytimg.com/vi/3Dn6Uqy9uag/0.jpg', title: 'Dalvar fr\u00e1 Au\u00f0sholtshj\u00e1leigu, WC 2007 Breeding', desc: 'Dalvar fr\u00e1 Au\u00f0sholtshj\u00e1leigu: Stallions, six years.\nConformation: 8.36 Riding Ability: 8.80 Mark: 8.63 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17940, thumb: 'http://i.ytimg.com/vi/X3MjYqBcm3M/0.jpg', title: 'Ur\u00f0ur fr\u00e1 Gunnarsholti, DIM 2008 T1', desc: 'Ur\u00f0ur fr\u00e1 Gunnarsholti - Uli Reber: T1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17939, thumb: 'http://i.ytimg.com/vi/faWy0oZvzWg/0.jpg', title: 'Lindi fr\u00e1 Malborgh, DIM 2008 T1', desc: 'Lindi fr\u00e1 Malborgh - Andreas Trappe: T1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17938, thumb: 'http://i.ytimg.com/vi/Wl3C2IX9vF4/0.jpg', title: 'Ullinn de Leye, Veulenkeuring', desc: 'Ullinn de Leye. Veulenkeuring Fokkerij Event 2008 Groesbeek \nM: S\u00edf von Roetgen (V: D\u00fdri fr\u00e1 Wyler)\nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17937, thumb: 'http://i.ytimg.com/vi/Mr2qw5AcY6s/0.jpg', title: 'Svaki fr\u00e1 Holtsm\u00fala, WC 2007 T1', desc: 'Svaki fr\u00e1 Holtsm\u00fala - Olil Amble: T1 Preliminary, position 11 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17936, thumb: 'http://i.ytimg.com/vi/c_YEM1xULwo/0.jpg', title: 'Gustur fr\u00e1 Kjarri, NC 2008 V1Y', desc: 'Gustur fr\u00e1 Kjarri - Helda Katharina Kristinsd\u00f3ttir: Nordic Championships 2008 V1Y Preliminary. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17935, thumb: 'http://i.ytimg.com/vi/3lK_TdzBdRs/0.jpg', title: 'Hr\u00edmur fr\u00e5n Jupitertorp, WC 2007 Breeding', desc: 'Hr\u00edmur fr\u00e5n Jupitertorp: \nStallions, six years. \nConformation: 8.43 Riding Ability: 8.25 Mark: 8.32 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17934, thumb: 'http://i.ytimg.com/vi/XAEESRbL2O8/0.jpg', title: 'Gumi fr\u00e1 Strandarh\u00f6f\u00f0i, NC 2008 T1', desc: 'Gumi fr\u00e1 Strandarh\u00f6f\u00f0i - Dorte Rasmussen: Nordic Championships 2008 T1 preliminary \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17933, thumb: 'http://i.ytimg.com/vi/TL61HLcS1S4/0.jpg', title: 'Naskur von Oed, WC 2007 Breeding', desc: 'Naskur von Oed: \nStallions, six years. \nConformation: 8.36 Riding Ability: 8.71 Mark: 8.57 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17932, thumb: 'http://i.ytimg.com/vi/bxvO9GW_r5g/0.jpg', title: 'WC 2007 T1 Finals', desc: 'World Championships 2007 T1 A-Finals'});
	cvids_196713.push({vid:17931, thumb: 'http://i.ytimg.com/vi/yBaHuUWNMew/0.jpg', title: 'WC 2007 T2 Finals', desc: 'World Championships 2007 T2 A-finals\nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17930, thumb: 'http://i.ytimg.com/vi/UeIoXajyYMQ/0.jpg', title: 'Perla van d\'n Hertendreef, Veulenkeuring', desc: 'Perla van d\'n Hertendreef. Veulenkeuring Fokkerij Event 2008 Groesbeek M: P\u00eda van d\'n Hertendreef (V: \u00ff?lfskj\u00f3ni von Roetgen)'});
	cvids_196713.push({vid:17929, thumb: 'http://i.ytimg.com/vi/5yhpvH9WeQo/0.jpg', title: 'Safir vom Lindenhof, NC 2008 V1Y', desc: 'Safir vom Lindenhof - Helena K. A\u03b4alsteinsdottir: \nNordic Championships 2008 V1Y preliminary. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17928, thumb: 'http://i.ytimg.com/vi/VHE2DvJSCUY/0.jpg', title: 'WC07T1Mist', desc: ' '});
	cvids_196713.push({vid:17927, thumb: 'http://i.ytimg.com/vi/g4WaW72Jti4/0.jpg', title: 'Lokkur fr\u00e1 \u00feorl\u00e1ksst\u00f6\u00f0um, NC 2008 T1', desc: 'Hulda G\u00fastafsd\u00f3ttir - Lokkur fr\u00e1 \u00feorl\u00e1ksst\u00f6\u00f0um\nNordic Championships 2008 T1 preliminary \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17926, thumb: 'http://i.ytimg.com/vi/j859Sd5-gUo/0.jpg', title: 'Herjann fra Lian, WC 2007 F1', desc: 'Herjann fra Lian - Camilla Mood Havig: F1 Preliminary, position 6 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17925, thumb: 'http://i.ytimg.com/vi/GaZO7zCWFV0/0.jpg', title: 'WC 2007 F1 Finals', desc: 'World Championships 2007 F1 A-Finals'});
	cvids_196713.push({vid:17924, thumb: 'http://i.ytimg.com/vi/0985zCc5Yaw/0.jpg', title: 'Borgfj\u00f6r\u00f0 v. Wiesengrund, NC 2008 F1', desc: 'Borgfj\u00f6r\u00f0 vom Wiesengrund - Helene Gustavsson:\nNordic Championships 2008 F1 preliminary. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17923, thumb: 'http://i.ytimg.com/vi/Xc3GJVt3hUw/0.jpg', title: 'N\u00f6kkvi fra Ryeth\u00f8j, WC 2007 T2', desc: 'N\u00f6kkvi fra Ryeth\u00f8j - Anne Sofie Nilsen: T2 Preliminary, position 15 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17922, thumb: 'http://i.ytimg.com/vi/y3U3_Fn0tOw/0.jpg', title: 'Leiri fr\u00e1 Br\u00fanast\u00f6\u00f0um, WC 2007 V1', desc: 'Leiri fr\u00e1 Br\u00fanast\u00f6\u00f0um - Andreas H\u00f6pfner: V1 Preliminary, position 17 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17921, thumb: 'http://i.ytimg.com/vi/TqTfwDY_-nA/0.jpg', title: 'Tr\u00far fr\u00e1 Au\u00f0sholtshj\u00e1leigu, NC08 F1', desc: 'Tr\u00far fr\u00e1 Au\u00f0sholtshj\u00e1leigu - Leif Arne Ellingseter, \nNordic Championships 2008 F1 preliminary. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17920, thumb: 'http://i.ytimg.com/vi/AJ3_JDnWIV8/0.jpg', title: 'Lindi fr\u00e1 Malborgh, DIM 2008 F1', desc: 'Lindi fr\u00e1 Malborgh - Andreas Trappe: F1 Vorentscheidung,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17919, thumb: 'http://i.ytimg.com/vi/O0i2OSRFDLM/0.jpg', title: 'Marel fr\u00e1 Feti, NC 2008 T1', desc: 'Elin Tindskar\u00f0 - Marel fr\u00e1 Feti\nNordic Championships 2008 T1 Preliminary \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17918, thumb: 'http://i.ytimg.com/vi/jCVlFwk_rdA/0.jpg', title: 'Reynir fra H\u00f3lsh\u00fasum NC2008 V1', desc: 'Hjalti Gu\u00f0mundsson - Reynir fra H\u00f3lsh\u00fasum\nNordic Championships 2008 V1 preliminary'});
	cvids_196713.push({vid:17917, thumb: 'http://i.ytimg.com/vi/1lsjCj7AD34/0.jpg', title: 'Korm\u00e1kur vom Lipperthof, WC 2007 Breeding', desc: 'Korm\u00e1kur vom Lipperthof: \nStallions, five years. \nConformation: 7.91 Riding Ability: 8.38 Mark: 8.19 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17916, thumb: 'http://i.ytimg.com/vi/36UciZNAD1g/0.jpg', title: 'Hraunar fr\u00e1 Efn-Rau\u00f0al\u00e6k, WC 2007 F1', desc: 'Hraunar fr\u00e1 Efn-Rau\u00f0al\u00e6k - Magn\u00fas Sk\u00falason: F1 Preliminary, position 13 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17915, thumb: 'http://i.ytimg.com/vi/oKjgioobxqU/0.jpg', title: 'Vatnar fr\u00e1 Vatnsholti, WC 2007 V1', desc: 'Vatnar fr\u00e1 Vatnsholti - Valdimar Bergsta\u00f0: V1 Preliminary, position 15 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17914, thumb: 'http://i.ytimg.com/vi/qMP1Gll8SGY/0.jpg', title: 'Bjarna van D\'n Aard, Veulenkeuring', desc: 'Bjarna van D\'n Aard. Veulenkeuring Fokkerij Event 2008 Groesbeek \nM: J\u00f3ra van \'t Steensfort \n(V: Dreyri von Roetgen)'});
	cvids_196713.push({vid:17913, thumb: 'http://i.ytimg.com/vi/PG9cOff-z_A/0.jpg', title: '\u00feerna fr\u00e1 \u00fe\u00fafu, WC 2007 F1', desc: '\u00feerna fr\u00e1 \u00fe\u00fafu - Juliet ten Bokum: F1 Preliminary, position 29\nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17912, thumb: 'http://i.ytimg.com/vi/ogz1BRRHV8I/0.jpg', title: 'Gumi fr\u00e1 Strandarh\u00f6f\u00f0i, WC 2007 T1', desc: 'Gumi fr\u00e1 Strandarh\u00f6f\u00f0i - Dorte Rasmussen: T1 Preliminary, position 23 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17911, thumb: 'http://i.ytimg.com/vi/Wqtv9wWvP7I/0.jpg', title: 'Kyndill fra Tjenerg\u00e5rden, WC 2007 Breeding', desc: 'Kyndill fra Tjenerg\u00e5rden: \nStallions, five years. \nConformation: 8.15 Riding Ability: 8.13 Mark: 8.14 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17910, thumb: 'http://i.ytimg.com/vi/sPc4EXLOYEM/0.jpg', title: 'Hrina fra Grastenhus, WC 2007 Breeding', desc: 'Hrina fra Grastenhus: \nMares, seven years and older. \nConformation: 8.20 Riding Ability: 8.15 Mark: 8.17 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17909, thumb: 'http://i.ytimg.com/vi/8VKY97GOpGg/0.jpg', title: 'Fr\u00e1nn fr\u00e1 Vestri-Leir\u00e1rg\u00f6r\u00f0um, WC 07 Breeding', desc: 'Fr\u00e1nn fr\u00e1 Vestri-Leir\u00e1rg\u00f6r\u00f0um:  Stallions, five years. \nConformation: 7.93 Riding Ability: 8.55 Mark: 8.30 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17908, thumb: 'http://i.ytimg.com/vi/YdB1Iywbxn0/0.jpg', title: 'WC07T1Assi', desc: ' '});
	cvids_196713.push({vid:17907, thumb: 'http://i.ytimg.com/vi/Rsv2OMNZonI/0.jpg', title: 'Hrani vom Schlo\u00dfberg, DIM 2008 FT2', desc: 'Hrani vom Schlo\u00dfberg - Styrmir \u00ff?rnason: Finale T2,\nDeutsche Islandpferde Meisterschaft 2008 Kaufungen'});
	cvids_196713.push({vid:17904, thumb: 'http://i.ytimg.com/vi/dCXYGtmyssQ/0.jpg', title: 'Vaskur vom Lindenhof, WC 2007 T1', desc: 'Vaskur vom Lindenhof - Lena Trappe: T1 Preliminary, position 14 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17903, thumb: 'http://i.ytimg.com/vi/hcMAojoc8Rk/0.jpg', title: 'Hrani vom Schlo\u00dfberg, WC 2007 F1', desc: 'Hrani vom Schlo\u00dfberg - Styrmir \u00c5rnason: F1 Preliminary, position 13 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17902, thumb: 'http://i.ytimg.com/vi/rn7pTYEbSEc/0.jpg', title: 'Ur\u00f0ur fr\u00e1 Gunnarsholti, WC 2007 Breeding', desc: 'Ur\u00f0ur fr\u00e1 Gunnarsholti: \nMares, seven years and older. \nConformation: 8.53 Riding Ability: 8.54 Mark: 8.54 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17901, thumb: 'http://i.ytimg.com/vi/dCXYGtmyssQ/0.jpg', title: 'Vaskur vom Lindenhof, WC 2007 T1', desc: 'Vaskur vom Lindenhof - Lena Trappe: T1 Preliminary, position 14 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17900, thumb: 'http://i.ytimg.com/vi/K1jRWtjxzE0/0.jpg', title: 'Kr\u00f3kur fr\u00e1 Efri-Rau\u00f0al\u00e6k NC 2008 F1', desc: 'Kr\u00f3kur fr\u00e1 Efri-Rau\u00f0al\u00e6k - Fredrik Rydstr\u00f6m, \nNordic Championships 2008 F1 preliminary. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17899, thumb: 'http://i.ytimg.com/vi/bHzi1P5frqI/0.jpg', title: 'Sk\u00fdr fr\u00e1 Libert\u00e9, Veulenkeuring', desc: 'Sk\u00fdr fr\u00e1 Libert\u00e9. Veulenkeuring Fokkerij Event 2008 Groesbeek \nM: Hrafnhetta fr\u00e1 Bakkakoti (V: Ari fr\u00e1 \u00ff?rbakka)'});
	cvids_196713.push({vid:17898, thumb: 'http://i.ytimg.com/vi/sUiGJqJAJZk/0.jpg', title: 'Dagsbrun von Marchegg, WC2007 Breeding', desc: 'Dagsbrun von Marchegg: \nMares, seven years and older. \nConformation: 7.91 Riding Ability: 8.05 Mark: 8.00 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17897, thumb: 'http://i.ytimg.com/vi/o5v0YSvAEIA/0.jpg', title: 'Gj\u00f3la fr\u00e1 Libert\u00e9', desc: 'Gj\u00f3la fr\u00e1 Libert\u00e9. Veulenkeuring Fokkerij Event 2008 Groesbeek \nM: Lj\u00f3ma fr\u00e1 Bakkakoti (V: K\u00e1ri fr\u00e1 Aldenghoor)'});
	cvids_196713.push({vid:17896, thumb: 'http://i.ytimg.com/vi/rIW2ZhhuxVI/0.jpg', title: 'Tilvera vom Lindenhof, FE 2008', desc: 'Tilvera vom Lindenhof. \nKeuring aan de hand, Fokkerij Event 2008 Groesbeek'});
	cvids_196713.push({vid:17895, thumb: 'http://i.ytimg.com/vi/CY-8vuhB_S0/0.jpg', title: 'Sold\u00e1n fr\u00e1 Hvitanesi, WC 2007 V1', desc: 'Sold\u00e1n fr\u00e1 Hvitanesi - Helene Blom: V1 Preliminary, position 19 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17894, thumb: 'http://i.ytimg.com/vi/vmqmKMtRUOE/0.jpg', title: 'Hrannar von Sva\u00f0a-Kol-Kir, WC 2007 F1', desc: 'Hrannar von Sva\u00f0a-Kol-Kir - Vignir J\u00f3nasson: F1 Preliminary, position 16 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17893, thumb: 'http://i.ytimg.com/vi/wv7dW3TknqQ/0.jpg', title: 'Felagi vom Lindenhof, fohlenschau', desc: 'Felagi vom Lindenhof: Fohlenschau Havixbeck 31-08-2008 \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17892, thumb: 'http://i.ytimg.com/vi/XYXkoA3CsOY/0.jpg', title: 'Gimsteinn fr\u00e1 Sk\u00e1ney, WC 2007 F1', desc: 'Gimsteinn fr\u00e1 Sk\u00e1ney - Jaap Groven: F1 Preliminary, position 7 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17891, thumb: 'http://i.ytimg.com/vi/XwD__NNM304/0.jpg', title: 'Hvinur fr\u00e1 Holtsm\u00fala, WC 2007 T1', desc: 'Hvinur fr\u00e1 Holtsm\u00fala - J\u00f3hann R Sk\u00falason: T1 Preliminary, position 1 \nWorld Championships 2007 Oirschot. \nLalendi searchpage http://lalendi.webklik.nl/page/home'});
	cvids_196713.push({vid:17890, thumb: 'http://i.ytimg.com/vi/UthVQCGLJqQ/0.jpg', title: 'wk 2007 Kraftur, Hvinur en Jarl', desc: 'WK 2007 ijslandse paarden. 3 schitterende hengsten.\nKraftur fr\u00e1 Bringu, Hvinur fr\u00e1 Holtsmula en Jarl fr\u00e1 Midkrika'});
	cvids_196713.push({vid:17887, thumb: 'http://i.ytimg.com/vi/WAqRoMVZVHQ/0.jpg', title: 'Fast speed racking horses,Racking horse ,speed tolt class', desc: 'fast true racking horses and pacing Icelandic horses .These people Know the differences between what a (True single foot gait is and what is the pace) the Tolt is the rack or singlefoot,there version of flying pace is what some of us Americans would call a rack or speed racking.'});
	cvids_196713.push({vid:11136, thumb: 'http://i.ytimg.com/vi/UcaTx060ApY/0.jpg', title: 'N\u00f6kkvi von Carze ( Islandpferd T\u00f6lt )', desc: 'N\u00f6kkvi von Carze, Deckhengst\n\nVorgestellt durch seine Besitzerin, Christina Dittrich\n\nKommentar: Walter Feldmann,\nGangpferdezentrum Aegidienberg (Bad Honnef)\n\ngaedingar-group.de'});
	cvids_196713.push({vid:11135, thumb: 'http://i.ytimg.com/vi/ZEXbSiZRm0U/0.jpg', title: 'Santano vom Lindenhof ( T\u00f6ltkreuzung T\u00f6lt )', desc: 'Paso Peruano x T\u00f6ltender Traber\n\nAus der Zucht von Familie Trappe\nLindenhof, Altenberge\n\nVorgestellt von Andreas H\u00f6pfner\n\nKommentiert von Walter Feldmann,\nGangpferdezentrum Aegidienberg (Bad Honnef)\n\ngaedingar-group.de'});
	cvids_196713.push({vid:11132, thumb: 'http://i.ytimg.com/vi/uPfo3aOodTg/0.jpg', title: 'Skotti vom Sch\u00f6nblick ( Islandpferd T\u00f6lt )', desc: 'Skotti vom Sch\u00f6nblick, Deckhengst\n\nVorgestellt von Walter Feldmann,\nGangpferdezentrum Aegidienberg (Bad Honnef)\n\ngaedingar-group.de'});
	cvids_196713.push({vid:11039, thumb: 'http://i.ytimg.com/vi/ZmvkSaj9iEQ/0.jpg', title: 'Gustur fr\u00e1 Grund', desc: 'Islandhengst Gustur fr\u00e1 Grund'});
	cvids_196713.push({vid:11024, thumb: 'http://i.ytimg.com/vi/jg9PdIP0QhQ/0.jpg', title: 'Bjarki fr\u00e1 Aldenghoor ( Islandpferd T\u00f6lt )', desc: 'Bjarki fr\u00e1 Aldenghoor, Deckhengst\n\nIm Besitz der Familie Feldmann\nGangpferdezentrum Aegidienberg, Bad Honnef\n\ngaedingar-group.de'});
	cvids_196713.push({vid:10485, thumb: 'http://i.ytimg.com/vi/SpTd9I0UUXs/0.jpg', title: 'Hengstenkeuring Brei\u00f0ablik #8', desc: 'Hengstenkeuring Brei\u00f0ablik'});
	cvids_196713.push({vid:10484, thumb: 'http://i.ytimg.com/vi/9t0bwG0UmLU/0.jpg', title: 'Hengstenkeuring Brei\u00f0ablik #6', desc: 'Hengstenkeuring Brei\u00f0ablik\nHerkansing hengsten'});
	cvids_196713.push({vid:10483, thumb: 'http://i.ytimg.com/vi/_4OBwxCfB48/0.jpg', title: 'Hengstenkeuring Brei\u00f0ablik #5', desc: 'Hengstenkeuring Brei\u00f0ablik\nHerkansing hengsten'});
	cvids_196713.push({vid:10482, thumb: 'http://i.ytimg.com/vi/AJzLzAcbjYk/0.jpg', title: 'Hengstenkeuring Brei\u00f0ablik #3', desc: 'Hengstenkeuring Brei\u00f0ablik.\nHerkansing hengsten.'});
	cvids_196713.push({vid:10481, thumb: 'http://i.ytimg.com/vi/cXGX_-FTWTw/0.jpg', title: 'Hengstenkeuring Brei\u00f0ablik #7', desc: 'Hengstenkeuring Brei\u00f0ablik'});
	cvids_196713.push({vid:10480, thumb: 'http://i.ytimg.com/vi/0XVXTtQ-4K8/0.jpg', title: 'Hengstenkeuring Brei\u00f0ablik #9', desc: 'Hengstenkeuring Brei\u00f0ablik'});
	cvids_196713.push({vid:10479, thumb: 'http://i.ytimg.com/vi/B3mvABPlZfw/0.jpg', title: 'Hengstenkeuring Brei\u00f0ablik #2', desc: 'Hengstenkeuring op de Brei\u00f0ablik.\nHerkansing hengsten'});
	cvids_196713.push({vid:10478, thumb: 'http://i.ytimg.com/vi/ukmuKMJTRgM/0.jpg', title: 'Hengstenkeuring Brei\u00f0ablik #1', desc: 'Hengstenkeuring op de Brei\u00f0ablik in Oirschot.\nHerkansing hengsten.'});
	cvids_196713.push({vid:10476, thumb: 'http://i.ytimg.com/vi/Ukiox3PAPx8/0.jpg', title: 'Ganti vom Maischeiderland', desc: 'Filmpje vn de IJslandse hengst Ganti'});
	cvids_196713.push({vid:10475, thumb: 'http://i.ytimg.com/vi/BT125SjT5DY/0.jpg', title: 'IJslandse Hengsten', desc: 'Diverse IJslandse Hengsten, allen ruim boven de 8 gekeurd!'});
	cvids_196713.push({vid:10474, thumb: 'http://i.ytimg.com/vi/d2cqSSNKuCM/0.jpg', title: 'IJslandse hengsten in Nederland', desc: 'IJslandse hengsten die in Nederland ter dekking staan.\nAllen onder het zadel gekeurd met minimaal 7.75'});
	cvids_196713.push({vid:10473, thumb: 'http://i.ytimg.com/vi/Uac1-oIFY_I/0.jpg', title: 'IJslandse Hengsten', desc: 'Diavoorstelling van diverse IJslandse Hengsten'});
	cvids_196713.push({vid:10472, thumb: 'http://i.ytimg.com/vi/1mvIMP9Wa7U/0.jpg', title: 'Nakomelingenshow hengstenkeuring Oirschot', desc: 'Nakomelingen show op de Ijslandse hengstenkeuring in Oirschot'});
	cvids_196713.push({vid:10471, thumb: 'http://i.ytimg.com/vi/71ZnePktXEM/0.jpg', title: 'IJslandse hengstenkeuring (3 jarige) 2008', desc: 'Ijslandse hengstenkeuring 20-4-2008 Breidablick Oirschot'});
	cvids_196713.push({vid:10470, thumb: 'http://i.ytimg.com/vi/ulqRnTziuBE/0.jpg', title: 'IJslandse hengstenkeuring ( 4 jarige) 2008', desc: 'Ijslandse hengsten keuring 20-4-2008 Oirschot Breidablick'});
	cvids_196713.push({vid:9324, thumb: 'http://3.gvt0.com/ThumbnailServer2?app=vss\&contentid=d9790f55e57e3723\&offsetms=85000\&itag=w160\&hl=nl\&sigh=xBlF-pUaFqIk5e1q1V8kOkhQ1Tw', title: 'Megastrandrit 2008', desc: 'megastrandrit met 170 ijslanders georganiseerd door hestagaman.'});
	cvids_196713.push({vid:9303, thumb: 'http://i.ytimg.com/vi/Nah-g3U1c_8/0.jpg', title: 'Moving icelandic horses', desc: ' '});
	cvids_196713.push({vid:9301, thumb: 'http://i.ytimg.com/vi/wXgatsRXBrg/0.jpg', title: 'vidja sunna snot running icelandic horses de valge', desc: 'vidja sunna snot running icelandic horses de valge with sulky'});
	cvids_196713.push({vid:9300, thumb: 'http://i.ytimg.com/vi/uLsK7QV9GfQ/0.jpg', title: 'L\u00e6s\u00f8 - Riding holiday on icelandic horses', desc: 'Riding holiday on icelandic horses on the beautyful island L\u00e6s\u00f8, Denmark'});
	cvids_196713.push({vid:9299, thumb: 'http://i.ytimg.com/vi/ERpKB70WmE0/0.jpg', title: 'icelandic horses', desc: 'our horses in the wind. just nice faces to enjoy!'});
	cvids_196713.push({vid:9298, thumb: 'http://i.ytimg.com/vi/rJ3UUT6s5Rw/0.jpg', title: 'Midwest Horse Fair 2007 - Icelandic Horses 1', desc: 'This video was taken at the Midwest Horse Fair in Madison, Wisconsin on April 22, 2007. This is the opening of the Icelandic Horse breed demo.'});
	cvids_196713.push({vid:9294, thumb: 'http://i.ytimg.com/vi/4o9Z6TYUh8U/0.jpg', title: 'Galsis daugther blue dun one, Icelandic horses', desc: 'Icelandic horses'});
	cvids_196713.push({vid:9293, thumb: 'http://i.ytimg.com/vi/KghghOiqKko/0.jpg', title: 'Icelandic horses are better than unicorns', desc: 'Draumur fra Destiny, my young Icelandic horse, in his full winter coat. This video puts an end to the Unicorns vs. Icelandics debate.'});
	cvids_196713.push({vid:9290, thumb: 'http://i.ytimg.com/vi/FKzuGfa766U/0.jpg', title: 'WC for Icelandic Horses 2009', desc: 'WC for Icelandic Horses 2009 in Brunnadern, Switzerland'});
	cvids_196713.push({vid:9289, thumb: 'http://i.ytimg.com/vi/Nav62XDMlFA/0.jpg', title: 'icelandic horses', desc: 'and a second horse video about icelandic horses!'});
	cvids_196713.push({vid:9284, thumb: 'http://i.ytimg.com/vi/Hh6vsaZDk20/0.jpg', title: 'Icelandic Horses', desc: 'Just some pictures that shows Icelandic horses.'});
	cvids_196713.push({vid:9283, thumb: 'http://i.ytimg.com/vi/lOLfeIWWUAM/0.jpg', title: 'Fast speed racking horses/flying pace Icelandic horses', desc: 'fast true racking horses and pacing Icelandic horses on ice.These people Know the differences between what a (True single foot gait is and what is the pace) the Tolt is the rack or singlefoot,there version of flying pace is what some of us Americans would call a rack or speed racking.'});
	cvids_196713.push({vid:9211, thumb: 'http://i.ytimg.com/vi/P-t6OWSgR0o/0.jpg', title: 'IJslandershow Indoor Brabant', desc: 'Samen met Tobias voor de neus van Hare Majesteit Bea een paardenshow begeleid'});
	cvids_196713.push({vid:9184, thumb: 'http://i.ytimg.com/vi/azeK9w-9G5k/0.jpg', title: 'Groesplaat zwemmen', desc: 'Merries zwemmen op de Groesplaat 16 oktober 2007'});
	cvids_196713.push({vid:9183, thumb: 'http://i.ytimg.com/vi/5hxBPQJOAvM/0.jpg', title: 'de paarden... april/mei 2007', desc: 'lipurt\u00e1, lygna en j\u00f3ki april/mei 2007'});
	cvids_196713.push({vid:9179, thumb: 'http://i.ytimg.com/vi/LFKqv54HAB0/0.jpg', title: 'Blettur fra Spor (4,5 jaar) en Veertje (11 jaar)', desc: 'Blettur fra Spor'});
	cvids_196713.push({vid:9178, thumb: 'http://i.ytimg.com/vi/HZnGlmMdUmU/0.jpg', title: 'Skotta fra Spor', desc: 'Skotta fra Spor'});
	cvids_196713.push({vid:9177, thumb: 'http://i.ytimg.com/vi/SPSmFqY7-Ac/0.jpg', title: 'blettur010306', desc: 'Blettur fr\u00e1 Spor'});
	cvids_196713.push({vid:9176, thumb: 'http://i.ytimg.com/vi/NCYf5rXmOq8/0.jpg', title: 'Maria op Visir in tolt door het bos', desc: 'Maria op haar ijslands paard Visir in tolt door het bos'});
	cvids_196713.push({vid:9175, thumb: 'http://i.ytimg.com/vi/iLSqWzeaEh8/0.jpg', title: 'Peerdespul bij de genieput in Havelte', desc: 'IJslanders door het water bij de genieput in Havelte 25 juli 2008'});
	cvids_196713.push({vid:9122, thumb: 'http://i.ytimg.com/vi/pqrJjk4h80A/0.jpg', title: 'Daja op Ljufa', desc: 'ljufa fra breidablik'});
	cvids_196713.push({vid:9102, thumb: 'http://i.ytimg.com/vi/ZbD7z7QPvO8/0.jpg', title: 'Veer met Jolly Schenk', desc: 'Veer met Jolly Schenk'});
	cvids_196713.push({vid:9100, thumb: 'http://i.ytimg.com/vi/ct7doLTvg2U/0.jpg', title: 'Kj\u00f6lur te water', desc: 'Zwemtraining'});
	cvids_196713.push({vid:9099, thumb: 'http://i.ytimg.com/vi/exisPf0qr1U/0.jpg', title: 'Freyja en Blettur fra Spor', desc: 'Freyja en Blettur fra Spor i.d. zomer van 2003'});
	cvids_196713.push({vid:9089, thumb: 'http://i.ytimg.com/vi/DkSDd02WLgg/0.jpg', title: 'Heidi \& H\u00e1kon', desc: 'Heidi \& H\u00e1kon in the picture.'});
	cvids_196713.push({vid:9088, thumb: 'http://i.ytimg.com/vi/1norXfAabM4/0.jpg', title: 'Ivan', desc: '@breidablik'});
	cvids_196713.push({vid:9087, thumb: 'http://i.ytimg.com/vi/Sl5NTjeZ4GQ/0.jpg', title: 'Sanne \& Skyggnir', desc: 'Sanne from The Hague riding Skyggnir the Icelandic Horse in Eschwiller, France'});
	cvids_196713.push({vid:9085, thumb: 'http://i.ytimg.com/vi/GE2YnQBoOM8/0.jpg', title: 'Inscharing Groesplaat 2005', desc: 'Inscharing IJslandse paarden begrazingsgebied \"De Groesplaat\" bij Werkendam!'});
	cvids_196713.push({vid:9084, thumb: 'http://i.ytimg.com/vi/VNV0BobkkeM/0.jpg', title: 'Lettir fr\u00e1 Spor 5jr', desc: 'Lettir fr\u00e1 Spor met Runa hij is hier 5jr en 2 maanden onder het zadel.'});
	cvids_196713.push({vid:9078, thumb: 'http://i.ytimg.com/vi/bH6uqYpePXM/0.jpg', title: 'Les Marieke', desc: 'Les met Brynja'});
	cvids_196713.push({vid:9076, thumb: 'http://i.ytimg.com/vi/L2UwfXAuMGc/0.jpg', title: 'Erik Spee Kolgrimma Toltmyllan 2008', desc: 'Erik Spee riding Kollgrima fr\u00e1 Littla H\u00fasid on the German competition at Toltmyllan. Receiving 7,79 points at the Pace Test.'});
	cvids_196713.push({vid:9074, thumb: 'http://i.ytimg.com/vi/X-Y6Q-8zwVY/0.jpg', title: 'Stjarna', desc: 'Stjarna fra beykistodum op de buitenbaan in Exloo en tijdens de V3 op 9 februari 2008.'});
	cvids_196713.push({vid:9073, thumb: 'http://i.ytimg.com/vi/c3SweByIvkE/0.jpg', title: 'Fl\u00f6gri having fun :)', desc: 'My new icelandic stallion Flogri with too much energy :D He is such a cutie :)'});
	cvids_196713.push({vid:9062, thumb: 'http://i.ytimg.com/vi/UYtlSWrn7BQ/0.jpg', title: 'Thor fr\u00e1 Spor', desc: 'Thor fr\u00e1 Spor'});
	cvids_196713.push({vid:9061, thumb: 'http://i.ytimg.com/vi/OMg2janGJt8/0.jpg', title: 'Megastrandrit 2008', desc: 'De Hestagaman Megastrandrit 2008 slideshow door Elsje Russchen'});
	cvids_196713.push({vid:9060, thumb: 'http://i.ytimg.com/vi/GYU-j8bNr0A/0.jpg', title: 'Landsm\u00f2t 2008', desc: 'Fotoimpressie van mijn eerste bezoek aan IJsland en aan de landsmot 2008 in Hella. Fantastische paarden......'});
	cvids_196713.push({vid:9058, thumb: 'http://i.ytimg.com/vi/XFOmJ9wl3LA/0.jpg', title: 'Lekker stoeien', desc: 'Stoeien in de paddock bij Gaedingi, Uit de oude doos, uit mei 2006.'});
	cvids_196713.push({vid:9057, thumb: 'http://i.ytimg.com/vi/OfzSUkBU9hI/0.jpg', title: 'ijslanders van de gele berg @ punktur', desc: 'hoe haal je je paarden van een berg in polen'});
	cvids_196713.push({vid:9056, thumb: 'http://i.ytimg.com/vi/arBF6DozA40/0.jpg', title: 'Laxnes vom St\u00f6rtal', desc: 'de IJslandse hengst Laxnes'});
	cvids_196713.push({vid:8630, thumb: 'http://0.gvt0.com/ThumbnailServer2?app=vss\&contentid=d6a8de71af69fb60\&offsetms=5000\&itag=w160\&hl=nl\&sigh=xycwIjZiIQt3QzdNPa6vWirJqW8', title: 'paarden naar de wei', desc: 'Zondag 25 maart zomertijd is ingegaan, en de ijslanders worden weer lekker naar de wei gereden.'});
	cvids_196713.push({vid:8629, thumb: 'http://3.gvt0.com/ThumbnailServer2?app=vss\&contentid=107b8cf499988bc7\&offsetms=5000\&itag=w160\&hl=nl\&sigh=HEFAae-1IT9Dep0OJiv_NkLrFm4', title: 'IJslander show - de kudde', desc: 'Ijslanders'});
	cvids_196713.push({vid:8628, thumb: 'http://0.gvt0.com/ThumbnailServer2?app=vss\&contentid=597ac2c2eef407d0\&offsetms=65000\&itag=w160\&hl=nl\&sigh=VY6yj0j6zVOePmF2uPSG9tneBsc', title: '9_februari_2008_Megastrandrit_IJslandse_Paarden.wmv', desc: 'Vandaag werde de Megastrandrit voor IJslandse Paarden in Camperduin gereden. Een flinke hoeveelheid paarden en een prachtige dag, we hebben genoten.'});
	cvids_196713.push({vid:8627, thumb: 'http://1.gvt0.com/ThumbnailServer2?app=vss\&contentid=ce513fd637296a65\&offsetms=40000\&itag=w160\&hl=nl\&sigh=6ZbDqgt40_Og71cWT9vtp5cVCvQ', title: 'ijslandse paarden op ijs', desc: 'wedstrijd'});
	cvids_196713.push({vid:8625, thumb: 'http://123image.123video.nl/227/227119_t.jpg', title: 'Nul-meting Glod fra Oddholi', desc: ''});
	cvids_196713.push({vid:8622, thumb: 'http://i.ytimg.com/vi/T8ZJYtNgI_g/0.jpg', title: 'spoojes film', desc: 'ijslandse paarden'});
	cvids_196713.push({vid:8621, thumb: 'http://i.ytimg.com/vi/cnYXKP6ILQE/0.jpg', title: 'Megastrandrit 2008', desc: 'Hestagaman\'s Mega Strandrit op 9 februari 2008. 170 IJslandse paarden op het strand bij Hargen!'});
	cvids_196713.push({vid:8620, thumb: 'http://i.ytimg.com/vi/QFsrPI1z5Pg/0.jpg', title: 'Saga en Elding onze verzorg Ijslanders!', desc: 'Onze ijslandse verzorgpony\'s!'});
	cvids_196713.push({vid:8618, thumb: 'http://i.ytimg.com/vi/N7SKHF-sobU/0.jpg', title: 'Mijn Paarden', desc: 'een leuk dia filmpje van mijn paarden'});
	cvids_196713.push({vid:8617, thumb: 'http://i.ytimg.com/vi/ZanEKobAsNs/0.jpg', title: 'ijslandse paard raudka fra stanmyr', desc: 'paard'});
	cvids_196713.push({vid:8616, thumb: 'http://i.ytimg.com/vi/UwtHF6mm5tw/0.jpg', title: 'Ijslands gangen paard', desc: 'Vinur fra Asi die sinds kort alle 5 zijn gangen (Redelijk) onder de knie heeft.'});
	cvids_196713.push({vid:8615, thumb: 'http://i.ytimg.com/vi/R1Ucag00UAo/0.jpg', title: 'Askur paces...', desc: 'Askur paces!'});
	cvids_196713.push({vid:8614, thumb: 'http://i.ytimg.com/vi/Jp7ypjyTErE/0.jpg', title: 'IJslanders on ice 2007', desc: 'De IJslanders on Ice show op 17 maart 2007 in Haarlem.\nVoor meer informatie over dit evenment zie http://www.horsesonice.nl/'});
	cvids_196713.push({vid:8613, thumb: 'http://i.ytimg.com/vi/vy5xCY5RgqU/0.jpg', title: 'The icelandic horse', desc: 'icelandic horses!'});
	cvids_196713.push({vid:8612, thumb: 'http://i.ytimg.com/vi/UthVQCGLJqQ/0.jpg', title: 'wk 2007 Kraftur, Hvinur en Jarl', desc: 'WK 2007 ijslandse paarden. 3 schitterende hengsten.\nKraftur fr\u00e1 Bringu, Hvinur fr\u00e1 Holtsmula en Jarl fr\u00e1 Midkrika'});
	cvids_196713.push({vid:8611, thumb: 'http://i.ytimg.com/vi/HspZBbzDUwU/0.jpg', title: 'WK2007', desc: 'De beste momenten van de WK 2007 voor IJslandse paarden achter elkaar gezet.'});
	cvids_196713.push({vid:8610, thumb: 'http://i.ytimg.com/vi/upI2nU1dtIM/0.jpg', title: 'Stuntpilotenteam F1 A-finale: De Prijsuitreiking', desc: 'Tijdens de prijsuitreiking van de F1 A-finale konden 2 hengsten elkaar niet luchten, zie wat hiervan komt.\nWereldkampioenschap voor IJslandse paarden 2007 te Oirschot'});
	cvids_196713.push({vid:8601, thumb: 'http://i.ytimg.com/vi/9hrEFR3kOyE/0.jpg', title: 'Ijslandse Paarden', desc: 'Beelden van ijslandse paarden tijdens onze 2008 ijslandreis'});
	cvids_196713.push({vid:8600, thumb: 'http://i.ytimg.com/vi/mlYFWIoDVwg/0.jpg', title: 'WK 2005 ijslandse paarden', desc: 'Promo filmpje'});
	cvids_196713.push({vid:8599, thumb: 'http://i.ytimg.com/vi/jpx8kDEojq0/0.jpg', title: 'Herfstwedstrijd Breidablik IJslandse Paarden 2007', desc: 'Herfstwedstrijd Breidablik IJslandse Paarden 2007'});
	cvids_196713.push({vid:8488, thumb: 'http://s1.mcstatic.com/thumb/474592/3268483/4/catalog_item5/0/1/icelandic_horses_in_mackay_idaho.jpg', title: 'Icelandic horses in Mackay Idaho', desc: 'This is a video of pictures of Icelandic horses at my friends ranch in Mackay Idaho.\nThese are full grown horses and wonderfull landscape.\nMusic track\"The Tired Worrior\" created and composed by Michael Weinstein, Sait Koray and his wife Anna on vocals.\nWe hope that you enjoy this video! :)'});
	cvids_196713.push({vid:8483, thumb: 'http://a.images.blip.tv/Hestakaup-DiddisTalk753-136-364.jpg', title: 'Diddi\'s Talk', desc: '\n\n\"The Association of Trainers contributed to the show a very entertaining and informative event which was a demonstration implemented by Master Sigurbj\u00f6rn B\u00e1r\u00f0arson....\"Sigurbj\u00f6rn supported his show with a little tale where he explained how important it is that we, the Icelandic horse people, do not forget the roots of Icelandic horse riding and do not get lost in our thirst for innovation. Finally at the end of his presentation, Sigurbj\u00f6rn said that we should not learn from foreigners how to ride the Icelandic horse. They should learn from us. His show was extremely well received by the spectators.\" -- Eidfaxi.Full story in Icelandic:  http://eidfaxi.is/Frettir/Birtinggreinar/4239Full story in Icelanglish: http://en.eidfaxi.is/News/Read/4257 \n\n'});
	cvids_196713.push({vid:8482, thumb: 'http://a.images.blip.tv/Techtrek-E11IcelandicPonyRidingInSweden761-96.jpg', title: 'E11: Icelandic Pony Riding in Sweden', desc: '\n\nA ride on Icelandic Pony\'s in the forests of Farinso Island, outside of Stockholm Sweden. \n\n'});
	cvids_196713.push({vid:8480, thumb: 'http://a.images.blip.tv/Hestakaup-ToltTest3ivx231-990.jpg', title: 'Tolt Test 3ivx', desc: '\n\n3ivx compression from QuckTime reference movie.  15 frames, 600 kbs bitrate, 2 pass. 10.8 meg.  \n\n'});
	cvids_196713.push({vid:8477, thumb: 'http://a.images.blip.tv/Hestakaup-HerdBehavior643-148.jpg', title: 'Herd Behavior', desc: '\n\nEvery morning on a trek, the herd of horses need to be rounded up. Most go along willingly, but there are always a few free-thinkers! The problem is, they can start a whole new herd that the rest will follow.This valley is called Kolbeinsdalur, Kolbein\'s valley. I don\'t know who or what Kolbein is, but now that I have this vlog, I feel obligated to track it down. There is a small river running through this valley. It empties to the ocean at Kolkuos, the spot where Fluga, the first horse in Iceland jumped ship. Bit by bit, these places come together. \n\n'});
	cvids_196713.push({vid:8467, thumb: 'http://a.images.blip.tv/Hestakaup-HorseTrekkingInIceland732-688.jpg', title: 'Horse Trekking In Iceland', desc: '\n\nWe are coming back from a 5 day trek in the mountains and valleys of Skagafj\u00f6r\u00f0ur in northern Iceland. Because each day we rode 2 or 3 different horses, we travel with the \"spares\" in a loose herd along with us. These horses have 4 and 5 different gaits rather than the usual 3. The 4th gait, the tolt, is so smooth that it looks as if the rider is on wheels. For more video about Iceland and Icelandic horses, come to http://hestakaup.com \n\n'});
	cvids_196713.push({vid:8466, thumb: 'http://a.images.blip.tv/Hestakaup-TheFirstHorseInIceland907-10.jpg', title: 'The First Horse in Iceland', desc: '\n\nThe mare, Fluga, jumped ship right here at the beach now called Kolkuos.I have no idea why there is no thumbnail for this! \n\n'});
	cvids_196713.push({vid:7712, thumb: 'http://i.ytimg.com/vi/T9z-c5lg8Mg/0.jpg', title: 'Norwegian Championship Icelandic Horse', desc: 'Norwegian Championship 2008. Icelandic horse.\nMusic; Pride FC Official Theme'});
	cvids_196713.push({vid:7710, thumb: 'http://i.ytimg.com/vi/sPipjsRep9U/0.jpg', title: 'Real time Hoofmechanism Icelandic horse gate toelt - tilt - t\u00f8lt', desc: 'See also http://www.youtube.com/watch?v=7bDqVmyVmGo\n\nNote the touchdown of the hoof capsule and when the bulbs leave the ground.\nThis is a touchdown with the horse slightly out of balance .... gate is toelt!\n.\nNeed to know more? ... \nKeep an eye on www.naturhov.dk this fall!'});
	cvids_196713.push({vid:7700, thumb: 'http://i.ytimg.com/vi/UUaKg78Lyko/0.jpg', title: 'World Championship Icelandic Horses 2007', desc: 'An extract from the A-final T2 T\u00f6lt. See the complete video on http://www.myhorse.tv'});
	cvids_196713.push({vid:7695, thumb: 'http://i.ytimg.com/vi/zCx0jMs1C7Y/0.jpg', title: 'World Championship Icelandic Horses 2007', desc: 'Extracts from the A-final of F1 Fivegait. See more on http://www.myhorse.tv'});
	cvids_196713.push({vid:7692, thumb: 'http://i.ytimg.com/vi/ANMH-u5NDVY/0.jpg', title: 'Icelandic Horses Playing', desc: 'Two Icelandic horses playing, jumping, biting, circling, dropping to their knees, raising lots of dust. They get quite sweaty by the time they are done. These two are best of friends and have known each other since they were colts. They were born in 1995 and were 13 years old at the time I videotaped their escapades. They do this every day.'});
	cvids_196713.push({vid:7691, thumb: 'http://i.ytimg.com/vi/sZ5UTHBNSiA/0.jpg', title: 'Icelandic horses in Iceland', desc: 'Just check it out.'});
	cvids_196713.push({vid:7690, thumb: 'http://i.ytimg.com/vi/SaF8huVQRUQ/0.jpg', title: 'World Cup 2008 - Icelandic Horses - myhorse.tv', desc: 'A short feature from the Icelandic World Cup 2008 - see more on http://www.myhorse.tv'});
	cvids_196713.push({vid:7687, thumb: 'http://i.ytimg.com/vi/m0k9hTnnxwI/0.jpg', title: 'WC 2007 Icelandic horses Noortje de Laat PP1', desc: 'World Championship 2007 Icelandic horses Noortje de Laat[NL] with M\u00e1ni fr\u00e1 Innri-Kleif in PP1 Pace Test -- august 9 2007\n\nEnd result 5.79\n1ST 6.0 - 6.0 - 5.5 - 0.0 - 8.8   \n2ND 7.0 - 6.0 - 6.0 - 0.0 - 8.6'});
	cvids_196713.push({vid:7686, thumb: 'http://i.ytimg.com/vi/SojY8sAF81c/0.jpg', title: 'Icelandic Horse T\u00f6lt Pace', desc: 'Iceland Horses in a Dorset show, May 2008. Clip shows the lovely t\u00f6lt pace'});
	cvids_196713.push({vid:7685, thumb: 'http://i.ytimg.com/vi/lEjhpIwlnIA/0.jpg', title: 'T\u00f6lting Icelandic Horse in Northern Ontario', desc: 'Sprettur, 6 years old, sales horse at Clear Lake Farm, Magnetawan, Ontario, Canada, www.icelandichorses.ca'});
	cvids_196713.push({vid:7684, thumb: 'http://i.ytimg.com/vi/BPSml3HWlqc/0.jpg', title: 'World Championship Icelandic Horses 2007', desc: 'An extracts from the A-final in T1. See the complete video on http://www.myhorse.tv'});
	cvids_196713.push({vid:7682, thumb: 'http://i.ytimg.com/vi/N0fjVSv9BbY/0.jpg', title: 'icelandic horses playing - islandpferde am raufen', desc: 'Icelandics Faxi and Kjalar playing and showing their teeth. Faxi und Kjalar am Spielen und Z\u00e4hne zeigen'});
	cvids_196713.push({vid:7680, thumb: 'http://i.ytimg.com/vi/LW2YsF17pH8/0.jpg', title: 'Icelandic horse at Toelt Tolt T\u00f6lt', desc: 'here is Jane and her horse doing toelt (t\u00f6lt, t\u00f6lt), one of the five gaits of Icelandic horses.'});
	cvids_196713.push({vid:7678, thumb: 'http://i.ytimg.com/vi/1xzoDyujkwI/0.jpg', title: 'What Gait / Nanna 3, Icelandic Horse', desc: 'This is the third video of Nanna, Icelandic horse mare; what gait is she doing?\n\nhttp://iceryder.net'});
	cvids_196713.push({vid:7677, thumb: 'http://i.ytimg.com/vi/58vGFJdwBOg/0.jpg', title: 'Icelandic Horses', desc: 'Me feeding four beautiful Icelandic horses.'});
	cvids_196713.push({vid:7674, thumb: 'http://i.ytimg.com/vi/Lyr4yO9K1LU/0.jpg', title: 'Icelandic Horses', desc: 'Different video shots of Icelandic horses in Iceland - running, sleeping, eating, dreaming...'});
	cvids_196713.push({vid:7650, thumb: 'http://i.ytimg.com/vi/tVxT6xX_7Kw/0.jpg', title: 'Icelandic Horses at Bork Viking Harbour Denmark', desc: 'Vorf\u00fchrung Islandpferde im Freilichtmuseum Wikingerhafen in Bork D\u00e4nemark - Skjern Egvad open air museum'});
	cvids_196713.push({vid:7648, thumb: 'http://i.ytimg.com/vi/5ZczMsOv_pk/0.jpg', title: 'Icelandic Horses in Snowy Valley', desc: 'Icelandic horses in a snowy valley on a cold and short day, fortunately they are soon to be sheltered.'});
	cvids_196713.push({vid:7644, thumb: 'http://i.ytimg.com/vi/vvBU_Pjshb0/0.jpg', title: 'Isl\u00e4nder-Quadrille - Quadrille with Icelandic Horses HQ', desc: 'Acht Freizeit-Reiter f\u00fchren auf den Islandpferden des Islandpferdehofs Frilinghoven eine Quadrille zu Ronan Hardiman\'s \"Lord of the Dance\" auf.   www.frilinghoven.de'});
html+='<div class="v69resetstyle" id="thumb_196713" style="width:440px;height:356px;background-color:#FFFFFF;position:relative;">';
html+=vidthumbhtml_196713(curvid_196713);
html+='</div>';
	html +='<div class="v69resetstyle" style="height:26px;width:440px;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_196713();"><span style="color:#888;">You are watching channel</span><br/>Icelandic Horses in Action</div>';
	html +='<img style="position:absolute;left:296px;top:0px;height:25px;z-index:5;cursor:pointer;margin:0;padding:0;" src="http://incdn.s3.amazonaws.com/yubbyp_v1/img/project/yubby/logo.png" onclick="location.href=vidplayurl_196713();">';
		html +='<img onclick="showmatrix_196713(0);" style="position:absolute;left:5px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://www.yubby.com//img/widget/solo/iconmatrix24.png" title="popup an overview with all videos"  	id="pgmatrix_196713" 	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);"/>';
		html +='<img onclick="playprev_196713();" style="position:absolute;left:364px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://www.yubby.com//img/widget/solo/iconprev24.png" title="go to the previous video in the channel"  		id="pgprev_196713" 	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	//html +='<img onclick="playstop_196713();" style="position:absolute;left:364px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://www.yubby.com//img/widget/solo/iconstop24.png" title="stop"  													id="pgstop_196713"	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	//html +='<img onclick="playstart_196713();" style="position:absolute;left:388px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://www.yubby.com//img/widget/solo/iconplay24.png" title="play"  									id="pgplay_196713"	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	// start is now a toggle
	html +='<img onclick="playstartstop_196713();" style="position:absolute;left:388px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://www.yubby.com//img/widget/solo/iconplay24.png" title="play"  									id="pgplay_196713"	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	html +='<img onclick="playnext_196713();" style="position:absolute;left:412px;top:1px;cursor:pointer;margin:0;padding:0;" src="http://www.yubby.com//img/widget/solo/iconnext24.png" title="go to the next video in the channel"  	id="pgnext_196713"	onmouseover="oMouEv(this,true);" onmouseout="oMouEv(this,false);" />';
	html +='</div>';
	html+='</div>';
	html+='<iframe src="http://www.yubby.com/util/ustat" width="0" height="0" border="no" frameborder="0"  style="border:0; visibility: hidden;"></iframe>';
	wgElm_196713.innerHTML=html;
	wgElm_196713.style.display = 'block';
		updAllButState(); 
}

function playnext_196713() {
	if (curvid_196713 < cvids_196713.length -1 ) {
		curvid_196713++;
		if (cpvideo_196713)
			playstart_196713();	// we are playing video
		else {
			var thumbdiv=document.getElementById('thumb_196713');
			thumbdiv.innerHTML=vidthumbhtml_196713(curvid_196713);
		}
	}
	updAllButState();
}
function playprev_196713() {
	if (curvid_196713 >0 ) {
		curvid_196713--;
		if (cpvideo_196713)
			playstart_196713();	// we are playing video
		else {
			var thumbdiv=document.getElementById('thumb_196713');
			thumbdiv.innerHTML=vidthumbhtml_196713(curvid_196713);
		}
	}
	updAllButState();
}

function playstart_196713(vnr) {
	closepopup_196713();	// close popup (if open)
	if (vnr==null)
		vnr=curvid_196713;
	else
		curvid_196713=vnr;	// set the current
	var thumbdiv=document.getElementById('thumb_196713');
	thumbdiv.style.background='#FFF url(http://incdn.s3.amazonaws.com/yubbyp_v1/img/spinner32.gif) no-repeat 190px 148px';
	thumbdiv.innerHTML='<iframe name="playerframe" class="playerframe" src="http://www.yubby.com/widget/playvideo/'+cvids_196713[vnr].vid+'/440/356/L/W" width="440" height="356" frameborder="0" scrolling="no" allowtransparency="true"></iframe>';
	cpvideo_196713=true;
	updAllButState();
}

function playstop_196713() {
	cpvideo_196713=false;
	var thumbdiv=document.getElementById('thumb_196713');
	thumbdiv.style.background='#FFF';
	thumbdiv.innerHTML=vidthumbhtml_196713(curvid_196713);
	updAllButState();
}

function playstartstop_196713() {
	if (cpvideo_196713) 
		playstop_196713();
	else
		playstart_196713();
}

function vidthumbhtml_196713(vnr) {
	var html='';
	html+='<div class="v69resetstyle" style="width:430px;height:269px; overflow:hidden; position:absolute;left:5px;top:5px;">';
html+='<img src="'+cvids_196713[vnr].thumb+'" style="width:430px;height:323px;top:-27px;position:relative;">';
html+='</div>';
html+='<div class="v69resetstyle" style="width:420px;height:72px;position:absolute;left:5px;top:274px;background-color:#AAA;padding:5px;"><div class="v69resetstyle" style="overflow:hidden;height:73px;width:420px;"><div class="v69resetstyle" style="margin: 2px 3px; white-space: nowrap; font-size:15px;line-height:15px;color:#555555;">'+htmlspecialchars(cvids_196713[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_196713[vnr].desc)+'">'+htmlspecialchars(cvids_196713[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_196713.length)+'</div></div></div>';
html+='<div class="v69resetstyle" style="position: absolute; width:72px;height:72px;top:142px;left:184px;z-index:200;cursor:pointer;cursor:hand;background:url(http://www.yubby.com/img/media_play72.png) no-repeat;" onClick="playstart_196713();"></div>';
	return html;
}

function vidthumbhtmlSmall_196713(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_196713('+vnr+')" title="'+htmlspecialchars(cvids_196713[vnr].desc)+'" src="'+cvids_196713[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://incdn.s3.amazonaws.com/yubbyp_v1/img/media_play24.png) no-repeat;" onclick="playstart_196713('+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_196713[vnr].title)+'</div>';
			html+='</div>';
		html+='</div>';
	html+='</div>';
	return html;
}

// cp 1..npages
function paginationhtml_196713(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_196713('+(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_196713('+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_196713('+(cp+1)+');">Next &#187;</span>';
	else
		html+='<span class="pageblock_disabled">Next &#187;</span>';
	html+='</div>';
	return html;
}

function vidplayurl_196713(vnr) {
	if (vnr==null)
		vnr=curvid_196713;
	return 'http://www.yubby.com/channel/player/391/'+cvids_196713[vnr].vid;
}

//------------------------------------ button handlers --------------------------------------
function stButImg(oBut) {
	if (oBut.id == 'pgnext_196713') { 
		if (curvid_196713 >= cvids_196713.length -1 ) 
			oBut.src = imgNext_d.src;
		else
			oBut.src= butnext_mousein ? imgNext_ov.src : imgNext_ou.src;
	}
	if (oBut.id == 'pgprev_196713') { 
		if (curvid_196713==0 ) 
			oBut.src = imgPrev_d.src;
		else
			oBut.src= butprev_mousein ? imgPrev_ov.src : imgPrev_ou.src;
	}
	if (oBut.id == 'pgplay_196713') { 
		if (cpvideo_196713) 	// 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_196713') { 
	// 	if (!cpvideo_196713 ) 	// currently NOT playing
	// 		oBut.src = imgStop_ov.src;
	// 	else
	// 		oBut.src= butstop_mousein ? imgStop_ov.src : imgStop_ou.src;
	// }
	if (oBut.id == 'pgmatrix_196713') { 
		oBut.src= butmatrix_mousein ? imgMatrix_ov.src : imgMatrix_ou.src;
	}
}

function oMouEv(oBut,mouseIn) {
	
	if (oBut.id == 'pgnext_196713') 
		butnext_mousein=mouseIn;
	if (oBut.id == 'pgprev_196713') 
		butprev_mousein=mouseIn;
	if (oBut.id == 'pgplay_196713') 
		butplay_mousein=mouseIn;
	// if (oBut.id == 'pgstop_196713') 
	// 	butstop_mousein=mouseIn;
	if (oBut.id == 'pgmatrix_196713') 
		butmatrix_mousein=mouseIn;
	stButImg(oBut);
}

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

	el = document.getElementById('pgprev_196713');
	if (el) 
		stButImg(el); // update prevbutton state
		
	el = document.getElementById('pgplay_196713');
	if (el) 
		stButImg(el); // update prevbutton state
		
	// el = document.getElementById('pgstop_196713');
	// if (el) 
	// 	stButImg(el); // update prevbutton state

	el = document.getElementById('pgmatrix_196713');
	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_196713() {
  el = document.getElementById('ipopup_196713');
  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_196713(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_196713');
	var html='';
	for (var i=(matrix_curpg-1)*16,cv=0;i<cvids_196713.length && cv<16;i++) {
		html+=  vidthumbhtmlSmall_196713(i);
		cv++;
	}
	html+=  '<div class="v69resetstyle" style="clear:both;"></div>';
	if (matrix_npages>1) {
		html+=  '<div  class="v69resetstyle" style="margin:10px 0px">'+paginationhtml_196713(matrix_curpg, matrix_npages)+'</div>';
	}

	mxs.innerHTML=html;
}

function showmatrix_196713() {
	// close old one
	closepopup_196713();

	matrix_npages= Math.ceil(cvids_196713.length / 16);
	
	// open new
	var popup_div = document.createElement('div');
	var title='matrix';
	popup_div.id = "ipopup_196713";
	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_196713();" 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 class="v69resetstyle" style="position:absolute;top:8px;left:15px;color:#888;font-size:15px;overflow:hidden;width:'+(base_width-50)+'px;">Icelandic Horses in Action</div>';
	vid_html+=	'<div class="v69resetstyle" style="margin:30px 10px 10px 10px;" id="mxs_196713">';
	// for (var i=0,cv=0;i<cvids_196713.length && cv<16;i++) { 
	// 		vid_html+=  vidthumbhtmlSmall_196713(i);
	// 		cv++;
	// 	}
	// 	vid_html+=  '<div style="clear:both;"></div>';
	// 
	// 	if (matrix_npages>1) {
	// 		vid_html+=  '<div style="margin:10px 0px">'+paginationhtml_196713(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_196713(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 + '"';
}




