// Inicialização conforme a página

function FotosEmpresa(id) {
	return function (e) { e.preventDefault(); OpenImage(getElem('fotoempresa' + id),500,330) }
}

var URL = window.location.href
URL = URL.substr(URL.lastIndexOf("/") + 1).toLowerCase()

if (/inicial/.test(URL))
	listen('load', window, function() { listen('click', 'inpChave', function(e) { e.currentTarget.select() }) })

if (/popup/.test(URL))
	listen('load', window, function() { listen('click', 'fechar', FecharJanela); listen('keypress', 'fechar', FecharJanela) })
else {
	listen('load', window, function() { mlisten('click', getElementsByClass('btVoltar', 'a'), VoltarPagina); mlisten('keypress', getElementsByClass('btVoltar', 'a'), VoltarPagina) })
	listen('load', window, function() { listen('click', 'tua', event_popup); listen('keypress', 'tua', event_popup) })
}

if (/empresa_apresentacao/.test(URL))
	listen('load', window, function() { 
		listen('click', 'fotoempresa1', FotosEmpresa(1)); listen('keypress', 'fotoempresa1', FotosEmpresa(1))
		listen('click', 'fotoempresa2', FotosEmpresa(2)); listen('keypress', 'fotoempresa2', FotosEmpresa(2))
		listen('click', 'fotoempresa3', FotosEmpresa(3)); listen('keypress', 'fotoempresa3', FotosEmpresa(3))
		listen('click', 'fotoempresa4', FotosEmpresa(4)); listen('keypress', 'fotoempresa4', FotosEmpresa(4))
	})
