$(document).ready(function() {
	$(".campo1").focus(function() {
		if ($(this).val() == "Nome")
			$(this).val("");
	});
	$(".campo1").blur(function() {
		if ($(this).val() == "")
			$(this).val("Nome");
	});
	
	$(".campo1_1").focus(function() {
		if ($(this).val() == "E-mail")
			$(this).val("");
	});
	$(".campo1_1").blur(function() {
		if ($(this).val() == "")
			$(this).val("E-mail");
	});
	
	$(".campo2_1").focus(function() {
		if ($(this).val() == "DDD")
			$(this).val("");
	});
	$(".campo2_1").blur(function() {
		if ($(this).val() == "")
			$(this).val("DDD");
	});
	
	$(".campo2_2").focus(function() {
		if ($(this).val() == "Telefone")
			$(this).val("");
	});
	$(".campo2_2").blur(function() {
		if ($(this).val() == "")
			$(this).val("Telefone");
	});
	
	$(".campo3").focus(function() {
		if ($(this).val() == "Mensagem")
			$(this).val("");
	});
	$(".campo3").blur(function() {
		if ($(this).val() == "")
			$(this).val("Mensagem");
	});
});