//hides the layers with a timeout
function hideLayers(){ // By David Alarcon
var hideLayer = P7_autoLayers(0);
}

function timerOut(){
var CloseLayer = setTimeout("hideLayers();",5000); //defines the time of Timeout in miliseconds
}
