$(document).ready(function() {
		
		   $('.nome').focus(function(){ 
			    if($(this).val() == 'Nome')
			    {
			      $(this).val('');
			    }
		  });
		  
		  $('.nome').blur(function(){
			    if($(this).val() == '')
			    {
			    	$(this).val('Nome');
			    } 
		  });

		  $('.tele').focus(function(){ 
			    if($(this).val() == 'Telefone')
			    {
			      $(this).val('');
			    }
		  });
		  
		  $('.tele').blur(function(){
			    if($(this).val() == '')
			    {
			      $(this).val('Telefone');
			    } 
		  });

		  $('.email').focus(function(){ 
			  	if($(this).val() == 'Email')
				{
					$(this).val('');
				}
		  });
			 
		  $('.email').blur(function(){
				if($(this).val() == '')
				{
					$(this).val('Email');
				} 
		  });
		  
		  $('.endereco').focus(function(){ 
			  	if($(this).val() == 'Endereço')
				{
					$(this).val('');
				}
		  });
			 
		  $('.endereco').blur(function(){
				if($(this).val() == '')
				{
					$(this).val('Endereço');
				} 
		  });
		  
		  $('.area').focus(function(){ 
			  	if($(this).val() == 'Área pretendida')
				{
					$(this).val('');
				}
		  });
			 
		  $('.area').blur(function(){
				if($(this).val() == '')
				{
					$(this).val('Área pretendida');
				} 
		  });
		  
		  $('.local').focus(function(){ 
			  	if($(this).val() == 'Local que está sediado')
				{
					$(this).val('');
				}
		  });
			 
		  $('.local').blur(function(){
				if($(this).val() == '')
				{
					$(this).val('Local que está sediado');
				} 
		  });
		  
		  $('.empresa').focus(function(){ 
			  	if($(this).val() == 'Quais empresa representa')
				{
					$(this).val('');
				}
		  });
			 
		  $('.empresa').blur(function(){
				if($(this).val() == '')
				{
					$(this).val('Quais empresa representa');
				} 
		  });

		  $('.experiencia').focus(function(){ 
			  	if($(this).text() == 'Fale de sua experiência profissional')
			  	{
			  		$(this).text('');
			  	}
		  });
			  
		  $('.experiencia').blur(function(){
			  	if($(this).text() == '')
			  	{
			  		$(this).text('Fale de sua experiência profissional');
			  	} 
		  });
		  $('.msg').focus(function(){ 
			  	if($(this).text() == 'Mensagem')
			  	{
			  		$(this).text('');
			  	}
			});
			  
			$('.msg').blur(function(){
			  	if($(this).text() == '')
			  	{
			  		$(this).text('Mensagem');
			  	} 
			});
	});
