function onYouTubePlayerReady(playerId) {
      ytplayer = document.getElementById("player");
      ytplayer2 = document.getElementById("player2");
      
      //TODO: player3
      }

function loadVideo(id, videoname, id2, id3) {
	ytplayer.loadVideoById(id);
	
	
	if (id2 != '') {
		swfobject.embedSWF("http://www.youtube.com/v/"+id2+"?enablejsapi=1&playerapiid=ytplayer&rel=0&fs=1&hd=1", 
                "player2", "425", "356", "8", null, null, params, atts2);
	}
	
	if (id3 != '') {
		swfobject.embedSWF("http://www.youtube.com/v/"+id3+"?enablejsapi=1&playerapiid=ytplayer&rel=0&fs=1&hd=1", 
                "player3", "425", "356", "8", null, null, params, atts3);
	}



var divs = $$('.description');
divs.each(function(item) { item.hide(); });
$(videoname).show(); } 
	
