$(document).ready(function(){
	$(videos).each(function(){
		$("<li/>")
			.append(
				$("<a href=\"http://www.youtube.com/watch?v=" + this.id_youtube + "\">" + this.texto[idioma] + "</a>").click(function(){
					seleccionarVideo($(this).parent().index());
					return false;
				})
			)
			.appendTo("#videos");
	});

	$(anuncios).each(function(){
		$("<li><a href=\"" + this.url + "\" target=\"_blank\">" + this.texto[idioma] + "</a></li>").appendTo("#anuncios");
	});

	$(enlaces).each(function(){
		$("<li><a href=\"" + this.url + "\" target=\"_blank\">" + this.texto[idioma] + "</a></li>").appendTo("#enlaces");
	});

	seleccionarVideo(0);
});

function seleccionarVideo(i){
	if (i < 0 || i >= videos.length)
		return false;

	$("#foto").html("<object type=\"application/x-shockwave-flash\" data=\"http://www.youtube.com/v/" + videos[i].id_youtube + "\" width=\"590\" height=\"310\"><param name=\"movie\" value=\"http://www.youtube.com/v/" + videos[i].id_youtube + "\"></object>");
}
