function agregar_foto(titulo_evento,enlace_evento,ruta_foto,titulo_foto,enlace_foto,visitas_album){
	fotos.push({
				titulo_evento:titulo_evento,
				enlace_evento:enlace_evento,
				ruta_foto:ruta_foto,
				titulo_foto:titulo_foto,
				enlace_foto:enlace_foto,
				visitas_album:visitas_album
	});
}
function obj(x){
	return document.getElementById(x);
}
function mostrar_fotos(a){
	obj("galeria_fotos_titulo_evento").innerHTML=fotos[a].titulo_evento;
	obj("galeria_fotos_enlace_evento").href=fotos[a].enlace_evento;
	obj("galeria_fotos_foto").src=fotos[a].ruta_foto;
	obj("galeria_fotos_titulo_foto").innerHTML=fotos[a].titulo_foto;
	//obj("galeria_fotos_enlace_foto").href=fotos[a].enlace_foto;
	obj("galeria_fotos_visitas_album").innerHTML=fotos[a].visitas_album
}
function cambiar_foto(incr){
	c = (fotos.length>c+incr)?c+incr:0;
	if(c==-1){c=fotos.length-1;}
	mostrar_fotos(c);
}
function inicio_fotos(){
	notc=setInterval("cambiar_foto(1)",espera*1000);
}