window.onload = function(){
	//Nome News
	document.getElementById('nomenews').onfocus = function(){
		if (this.value == "Nome"){
			this.value = "";
		}
	}
	document.getElementById('nomenews').onblur = function(){
		if (this.value == ""){
			this.value = "Nome";
		}
	}

	//E-mail News
	document.getElementById('emailnews').onfocus = function(){
		if (this.value == "E-mail"){
			this.value = "";
		}
	}
	document.getElementById('emailnews').onblur = function(){
		if (this.value == ""){
			this.value = "E-mail";
		}
	}
	
	////Recados Index
	
	//Nome
	document.getElementById('nome').onfocus = function(){
		if (this.value == "Nome"){
			this.value = "";
		}
	}
	document.getElementById('nome').onblur = function(){
		if (this.value == ""){
			this.value = "Nome";
		}
	}
	
	//Mensagem
	document.getElementById('mensagem').onfocus = function(){
		if (this.innerHTML == "Digite aqui seu recado"){
			this.innerHTML = "";
		}
	}
	document.getElementById('mensagem').onblur = function(){
		if (this.innerHTML == ""){
			this.innerHTML = "Digite aqui seu recado";
		}
	}
}
