$(function(){
	
	$("#ContatoNome").focus(function() {
            if ( $(this).val() == "nome"){
                $(this).val('');
            }
	});
	
	$("#ContatoEmail").focus(function() {
            if ( $(this).val() == "e-mail"){
                $(this).val('');
            }
	});
	
	$("form").submit(function(){
		if($("#ContatoNome").val() == "nome"){
			$("#ContatoNome").val("");
		}
	})
});