// JavaScript Document
function acende_empresa(obj) {
	obj.src="Imagens/Empresa_S.JPG";
}

function apaga_empresa(obj) {
	obj.src="Imagens/Empresa.JPG";
}

function acende_parcerias(obj) {
	obj.src="Imagens/Parcerias_S.JPG";
}

function apaga_parcerias(obj) {
	obj.src="Imagens/Parcerias.JPG";
}

function acende_faleconosco(obj) {
	obj.src="Imagens/Fale_S.JPG";
}

function apaga_faleconosco(obj) {
	obj.src="Imagens/Fale.JPG";
}

function pegaData() {
	data = new Date();
	dia = data.getDate();
	mes = data.getMonth() + 1;
	if(mes < 10){
		mes = "0" + mes;
	}
	ano = data.getYear();
	if(ano < 1900){
		ano = ano + 1900;
	}
	document.write(dia + "/" + mes + "/" + ano);
}
