// JavaScript Document
function activar_pestania_foto(id){
		divfoto = "link_foto_"+id;
		afoto = "estilo_link_foto_"+id;
		divvideo = "link_video_"+id;
		avideo = "estilo_link_video_"+id;
		//alert(afoto);
	  document.getElementById(divfoto).style.width = "92px";
	  //document.getElementById(divfoto).style.height = "24px";
	  document.getElementById(divfoto).style.background = "url(/imagenes/estructura/pestania_galeria_fotos_activa.jpg)";
	  document.getElementById(divfoto).style.paddingLeft = '20px';
  	  document.getElementById(divfoto).style.paddingTop = '5px';
	  document.getElementById(divfoto).style.paddingBottom = '5px';
	  document.getElementById(divfoto).style.cssFloat = 'left';
  	  document.getElementById(divfoto).style.styleFloat = 'left';
	  document.getElementById(divfoto).style.backgroundRepeat = 'no-repeat';
      document.getElementById(afoto).style.color="#FFFFFF";
	  document.getElementById(divvideo).style.width = "92px";
	  //document.getElementById(divvideo).style.height = "24px";
	  document.getElementById(divvideo).style.background = "url(/imagenes/estructura/pestania_galeria_videos_no_activa.jpg)";
	  document.getElementById(divvideo).style.paddingLeft = '20px';
  	  document.getElementById(divvideo).style.paddingTop = '5px';
	  document.getElementById(divvideo).style.paddingBottom = '5px';
	  document.getElementById(divvideo).style.backgroundRepeat = 'no-repeat'; 
	  document.getElementById(avideo).style.color="#FFFFFF";

}

function activar_pestania_video(id){
		divfoto = "link_foto_"+id;
		afoto = "estilo_link_foto_"+id;
		divvideo = "link_video_"+id;
		avideo = "estilo_link_video_"+id;
	  document.getElementById(divvideo).style.width = "92px";
	  //document.getElementById(divvideo).style.height = "24px";
	  document.getElementById(divvideo).style.background = "url(/imagenes/estructura/pestania_galeria_videos_activa.jpg)";
	  document.getElementById(divvideo).style.paddingLeft = '20px';
  	  document.getElementById(divvideo).style.paddingTop = '5px';
	  document.getElementById(divvideo).style.paddingBottom = '5px';
	  document.getElementById(divvideo).style.backgroundRepeat = 'no-repeat';
      document.getElementById(avideo).style.color="#FFFFFF";
	  document.getElementById(divfoto).style.width = "92px";
	  //document.getElementById(divfoto).style.height = "24px";
	  document.getElementById(divfoto).style.background = "url(/imagenes/estructura/pestania_galeria_fotos_no_activa.jpg)";
	  document.getElementById(divfoto).style.paddingLeft = '20px';
  	  document.getElementById(divfoto).style.paddingTop = '5px';
	  document.getElementById(divfoto).style.paddingBottom = '5px';
	  document.getElementById(divfoto).style.cssFloat = 'left';
  	  document.getElementById(divfoto).style.styleFloat = 'left';
	  document.getElementById(divfoto).style.backgroundRepeat = 'no-repeat';  
	  document.getElementById(afoto).style.color="#FFFFFF";
}

