// Data

function Data(){
					days = new Array(7)
					days[1] = "Domingo";
					days[2] = "Segunda-feira";
					days[3] = "Terça-feira";
					days[4] = "Quarta-feira";
					days[5] = "Quinta-feira";
					days[6] = "Sexta-feira";
					days[7] = "Sábado";
					months = new Array(12)
					months[1] = "Janeiro";
					months[2] = "Fevereiro";
					months[3] = "Março";
					months[4] = "Abril";
					months[5] = "Maio";
					months[6] = "Junho";
					months[7] = "Julho";
					months[8] = "Agosto";
					months[9] = "Setembro";
					months[10] = "Outubro";
					months[11] = "Novembro";
					months[12] = "Dezembro";
					today = new Date(); day = days[today.getDay() + 1]
					month = months[today.getMonth() + 1]
					date = today.getDate()
					year=today.getYear();
					if (year < 2000)
					year = year + 1900;
					document.write ("<font face='Arial' color=666666 style='font-size:10px; font-weight:bold;'> "+ day +
					", " + date + " de " + month + " de " + year + "." + "</font>")
					// -- end hiding
	
}

//Botoes

function init(){
	
	//bt01 - Icone Home
	gif01=new Image();
	gif01.src="img/bot_home01.gif"
	gif02=new Image();
	gif02.src="img/bot_home02.gif"
	
	//bt02 - Icone E-mail
	gif03=new Image();
	gif03.src="img/bot_mail01.gif"
	gif04=new Image();
	gif04.src="img/bot_mail02.gif"
	
	//bt03 - Home
	gif05=new Image();
	gif05.src="img/m_home01.gif"
	gif06=new Image();
	gif06.src="img/m_home02.gif"
	
	//bt04 - Empresa
	gif07=new Image();
	gif07.src="img/m_empresa01.gif"
	gif08=new Image();
	gif08.src="img/m_empresa02.gif"
	
	//bt05 - Produtos
	gif09=new Image();
	gif09.src="img/m_produto01.gif"
	gif010=new Image();
	gif010.src="img/m_produto02.gif"
	
	//bt06 - Novidades
	gif011=new Image();
	gif011.src="img/m_novidade01.gif"
	gif012=new Image();
	gif012.src="img/m_novidade02.gif"
	
	//bt07 - Distribuidores
	gif013=new Image();
	gif013.src="img/m_distribuidores01.gif"
	gif014=new Image();
	gif014.src="img/m_distribuidores02.gif"
	
	//bt08 - Contato
	gif015=new Image();
	gif015.src="img/m_contato01.gif"
	gif016=new Image();
	gif016.src="img/m_contato02.gif"
	
	//bt09 - Controle
	gif017=new Image();
	gif017.src="img/p_controle01.gif"
	gif018=new Image();
	gif018.src="img/p_controle02.gif"
	
	//bt010 - Sirene
	gif019=new Image();
	gif019.src="img/p_sirene01.gif"
	gif020=new Image();
	gif020.src="img/p_sirene02.gif"
	
	//bt011 - Portao
	gif021=new Image();
	gif021.src="img/p_portao01.gif"
	gif022=new Image();
	gif022.src="img/p_portao02.gif"
	
	//bt012 - Discadora
	gif023=new Image();
	gif023.src="img/p_discadora01.gif"
	gif024=new Image();
	gif024.src="img/p_discadora02.gif"
	
	//bt013 - Download
	gif025=new Image();
	gif025.src="img/m_download01.gif"
	gif026=new Image();
	gif026.src="img/m_download02.gif"
	
}

// Redimensionamento dos iframes

function reIframe(){
	parent.document.getElementById("content").height=1;
	var htotal=document.body.scrollHeight;
	if(htotal>362){
		parent.document.getElementById("content").height=htotal;
	}else{
		parent.document.getElementById("content").height=362;
	}
}