<!--Feito por Fábio Bachi  :) -->

function mouseover (identificacao){

	if (document.getElementById(identificacao).value == "Nome" || document.getElementById(identificacao).value == "E-mail"){
		
		document.getElementById(identificacao).style.border = "#A5CD39 solid 1px" ;
		
	}
	
}
function mouseout (identificacaoOut){

	if (document.getElementById(identificacaoOut).value == "Nome" || document.getElementById(identificacaoOut).value == "E-mail"){
		
		document.getElementById(identificacaoOut).style.border = "#D9D9D9 solid 1px" ;
		
	}
	
}