// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function MostrarVideo(nombrevideo, autostart){
	$('#objeto_video').remove();
	
	$('#capa_video').html('<embed type="application/x-shockwave-flash" src="videos/mediaplayer.swf" style="" id="objeto_video" name="objeto_video" quality="high" wmode="transparent" allowscriptaccess="always" allowfullscreen="false" flashvars="file=http://www.tauronetserver.com/actorpablomartin/videos/' + nombrevideo + '&width=400&height=266&displayheight=266&backcolor=0x333333&frontcolor=0xaaaaaa&lightcolor=0xeeeeee&showstop=true&volume=100&autostart=' + autostart + '" width="400" height="266">');
}
// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function MostrarVideoGaleria(nombrevideo, autostart){
	$('#objeto_video').remove();

	$('#capa_video_galeria').html('<embed type="application/x-shockwave-flash" src="videos/mediaplayer.swf" style="" id="objeto_video" name="objeto_video" quality="high" wmode="transparent" allowscriptaccess="always" allowfullscreen="false" flashvars="height=283&width=400&displayheight=283&file=http://www.tauronetserver.com/actorpablomartin/videos/' + nombrevideo + '&backcolor=0x333333&frontcolor=0xaaaaaa&lightcolor=0xeeeeee&showstop=true&volume=0" width="400" height="283">');
}
// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function MostrarVideosDora(){
	$('#capa_fotos').fadeOut();
	$('#capa_videos').fadeIn();
	$('#boton_mostrar_videos_Dora').removeClass('opcion_menu_lateral');
	$('#boton_mostrar_videos_Dora').addClass('opcion_menu_lateral_seleccionado');
	$('#boton_mostrar_fotos_Dora').removeClass('opcion_menu_lateral_seleccionado');
	$('#boton_mostrar_fotos_Dora').addClass('opcion_menu_lateral');
	
	MostrarVideo('SECUENCIA_1.flv', 'false');
}
// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function MostrarFotosDora(){
	$('#capa_videos').fadeOut();
	$('#capa_fotos').fadeIn();
	$('#boton_mostrar_videos_Dora').removeClass('opcion_menu_lateral_seleccionado');
	$('#boton_mostrar_videos_Dora').addClass('opcion_menu_lateral');
	$('#boton_mostrar_fotos_Dora').removeClass('opcion_menu_lateral');
	$('#boton_mostrar_fotos_Dora').addClass('opcion_menu_lateral_seleccionado');
	
	$('#objeto_video').remove();
}
// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////