$(document).ready(function() {					   
	acoesFormNewsLetter();	
});

function acoesFormNewsLetter(){
    $(".boxNewsletter .seuNome").blur(function(){
        if($(this).attr("value")==""){
            $(this).attr("value","Seu nome");
        }
    });
    $(".boxNewsletter .seuNome").focus(function(){
        if($(this).attr("value")=="Seu nome"){
            $(this).attr("value","");
        }
    });
    $(".boxNewsletter .seuEmail").blur(function(){
        if($(this).attr("value")==""){
            $(this).attr("value","Seu e-mail");
        }
    });
    $(".boxNewsletter .seuEmail").focus(function(){
        if($(this).attr("value")=="Seu e-mail"){
            $(this).attr("value","");
        }
    });
}
  
