//var params = { allowScriptAccess: 'always', bgcolor: '#000000', autoplay :'1' };
//var atts = { id: 'ply' };
//swfobject.embedSWF('http://www.youtube.com/apiplayerbeta?enablejsapi=1&amp;playerapiid=ytplayer&amp;autoplay=1', 
//'wedo_videoplayer', '492', '300', '8', null, null, params, atts);


function onYouTubePlayerReady(playerId) {
		      //player
		      ply = document.getElementById("ply");
}

function startClip(name){	
		    	ply.loadVideoById(name, 0);
		    	return false;
}

function str_replace(search, replace, subject) {
    return subject.split(search).join(replace);
};

jQuery(document).ready(function(){

	jQuery("a.wedo_movielink").click(function(e){
		e.preventDefault();
		
		var th = jQuery(this);
		
		//einfahren
		jQuery("#videodescription").slideUp("normal", function(){
		
			//tauschen
			jQuery("#vtitle").text(th.parent().parent().find("span").eq(0).text());
			jQuery("#vdescr").text(th.parent().parent().find("span").eq(1).text());
			
			//ausfahren
			jQuery("#videodescription").slideDown("normal");
			
		});	
	
	});
	
	
	jQuery("a.wedo_imagelink").click(function(e){
		e.preventDefault();
		
		var th = jQuery(this);
		
		//einfahren
		jQuery("#videodescription").slideUp("normal", function(){
		
			//tauschen
			jQuery("#vtitle").text(th.parent().find("span").eq(0).text());
			jQuery("#vdescr").text(th.parent().find("span").eq(1).text());
			
			//ausfahren
			jQuery("#videodescription").slideDown("normal");
			
		});	
	
	});

});








