window.addEvent('domready',function(){
	// Quote page?
	var qvids = $$('.quote_rcol_thumbs a.video');
	if(qvids.length){
		qvids.each(function(obj,n){
			obj.addEvent('click',function(e){
				e.stop();
				var qvidp = $$('.quotevideo_param');
				var qvide = $$('.quotevideo_embed');
				var img = obj.getChildren('img');
				qvidp[0].setProperty('value','http://www.youtube.com/v/'+img.getProperty('rel')+'&amp;hl=en&amp;fs=1');
				qvide[0].setProperty('src',qvidp[0].getProperty('value'));
				var vidobj = $$('.quotevideo');
				var newvid = vidobj[0].clone();
				newvid.inject(vidobj[0],'after');
				vidobj[0].dispose();
				return false;
			});
		});
	}
});
