window.addEvent("domready", function(){
	var baseUrl = $$("input[name=baseUrl]").getValue();	
	flowplayer("reproductor-flash", baseUrl+"/flash/flowplayer-3.0.2.swf",
	{ 
		playlist:[
			{
				url:baseUrl+"/flash/videos/video.png",
				autoPlay:true
			},
			{
				url:baseUrl+"/flash/videos/video.flv",
				autoPlay:false
			}
		]			
	});
	
	$$(".video2").addEvent("click", function(evento){		
		(new Event(evento)).stop();
		$f().setClip(baseUrl+"/flash/videos/video2.flv");
	});
	
	$$(".video3").addEvent("click", function(evento){		
		(new Event(evento)).stop();
		$f().setClip(baseUrl+"/flash/videos/video3.flv");
	});
});
