// JavaScript Document

imgs=new Array("camara","informes","solicita","empresas","vivero");
colores= new Array("maroon","orange","#dcdc20","blue","green");

function muestraimg(nombre){
	
	nombre = nombre.substr(1,this.lenght);
	
	for ( n in imgs){
		capa = document.getElementById("D" + imgs[n]);
		celda= document.getElementById("C" + imgs[n]);
		if (imgs[n] == nombre){
			capa.style.visibility = "visible";
			celda.style.fontSize = "13";
			celda.style.letterSpacing = "-2";
			celda.style.color= colores[n];
				}
				else{
			capa.style.visibility = "hidden";
			celda.style.fontSize = "10"
			celda.style.color= "black"
			celda.style.letterSpacing = "0";
					}
		}
}


function hidestatus(){
       window.status='Cámara Oficial de Comercio e Industria de Salamanca';
        return true;
      }
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
document.onmouseover=hidestatus;
document.onmouseout=hidestatus;	