var elementoActivo= "cont1";
var imagenActiva= '';

function mostrar(id){
	var elemento = document.getElementById(id);
	elemento.style.display = 'block';
}

function mostrarIL(id){
	var elemento = document.getElementById(id);
	elemento.style.display = 'inline';
}

function ocultar(id){
	var elemento = document.getElementById(id);
	elemento.style.display = 'none';
}				
			
function activar(id){
	ocultar(elementoActivo);
	document.getElementById(elementoActivo+"tab").className="inactivo";
	mostrar(id);
	document.getElementById(id+"tab").className="activo"
	elementoActivo = id;
}

function verImagen(id){
        mostrar('sombra');
	window.scroll(0,0);
	mostrar('ventana');        
	mostrar(id);
        imagenActiva = id;	
	if (document.getElementById('img'+id).src){
		document.getElementById('img'+id).src = "http://www.fileden.com/files/2008/8/5/2036232/brunolaurenzano/" + id + ".jpg";
	};
	
}

function cerrarImagen(){
	ocultar(imagenActiva);
	ocultar('ventana');
	ocultar('sombra');
}

