window.onload = function(){
	setTamanho();
	setaFonte();
	
	//caixa de texto
	document.getElementById('nomenews').value = "Digite seu nome aqui.";
	document.getElementById('nomenews').onfocus    = setCleanValue;
    document.getElementById('nomenews').onblur     = setDefaultValue;
	
	
	document.getElementById('emailnews').value = "Digite seu e-mail aqui.";
	document.getElementById('emailnews').onfocus    = setCleanValue;
    document.getElementById('emailnews').onblur     = setDefaultValue;
	
	document.getElementById('nomei').value = "Digite seu nome aqui.";
	document.getElementById('nomei').onfocus    = setCleanValue;
    document.getElementById('nomei').onblur     = setDefaultValue;
	
	document.getElementById('nomei2').value = "Digite o nome de seu amigo aqui.";
	document.getElementById('nomei2').onfocus    = setCleanValue;
    document.getElementById('nomei2').onblur     = setDefaultValue;
	
	document.getElementById('emaili').value = "Digite o e-mail de seu amigo aqui.";
	document.getElementById('emaili').onfocus    = setCleanValue;
    document.getElementById('emaili').onblur     = setDefaultValue;
	//
	
	//aumenta fonte ------------------------
	document.getElementById('aumenta').onclick =  function(){fontSize('aconteudo','+');}
	document.getElementById('aumenta').onmouseover =  function(){this.style.background = "#ca9f6e"; this.style.color = "#95521b";}
	document.getElementById('aumenta').onmouseout =  function(){this.style.background = "#95521b"; this.style.color = "#fff0cd";}
	
	document.getElementById('diminui').onclick =  function(){fontSize('aconteudo','-');}
	document.getElementById('diminui').onmouseover =  function(){this.style.background = "#ca9f6e"; this.style.color = "#95521b";}
	document.getElementById('diminui').onmouseout =  function(){this.style.background = "#95521b"; this.style.color = "#fff0cd";}
	//--------------------------------------
	
	document.getElementById('flavio').onclick =  function(){abrefecha("flavio",1);trocaSeta("flavio");}
	document.getElementById('adestramento').onclick =  function(){abrefecha("adestramento",2);trocaSeta("adestramento");}
	document.getElementById('filhote').onclick =  function(){abrefecha("filhote",3);trocaSeta("filhote");}	
	document.getElementById('servico').onclick =  function(){abrefecha("servico",4);trocaSeta("servico");}
	document.getElementById('hospedagem').onclick =  function(){abrefecha("hospedagem",5);trocaSeta("hospedagem");}

	document.getElementById('flavio').onmouseout =  function(){setaFora("flavio");}
	document.getElementById('adestramento').onmouseout =  function(){setaFora("adestramento");}
	document.getElementById('filhote').onmouseout =  function(){setaFora("filhote");}	
	document.getElementById('servico').onmouseout =  function(){setaFora("servico");}
	document.getElementById('hospedagem').onmouseout =  function(){setaFora("hospedagem");}
	
	document.getElementById('flavio').onmouseover =  function(){setaSobre("flavio");}
	document.getElementById('adestramento').onmouseover =  function(){setaSobre("adestramento");}
	document.getElementById('filhote').onmouseover =  function(){setaSobre("filhote");}
	document.getElementById('servico').onmouseover =  function(){setaSobre("servico");}
	document.getElementById('hospedagem').onmouseover =  function(){setaSobre("hospedagem");}
}