// JavaScript 

function menuON(obj) {
	obj.className = 'bgMenuVerdeOn';
}
function menuOFF(obj) {
	obj.className = 'bgMenuVerde';
}

function abrirMenu(menu) {
	switch (menu) {
		case 'empresa' :
			document.location.href = 'empresa.html';
			break;
		case 'tecnologias' :
			document.location.href = 'tecnologias.html';
			break;
		case 'treinamento' :
			document.location.href = '/treinamento';
			break;
		case 'parceiros' :
			document.location.href = 'parceiros.html';
			break;
		case 'clientes' :
			document.location.href = 'clientes.html';
			break;
		case 'contatos' :
			document.location.href = 'contatos.html';
			break;
		case 'home' :
			document.location.href = 'default.html';
			break;
		default :
			document.location.href = 'default.html';
	}
	
}