// JavaScript Document
jQuery(document).ready(function($)
{
	$('.cont-inputs .nome input').focusin(function() {
		if ($(this).attr("value") == "nome / name") {
			$(this).attr("value","");
		}
	});
	
	$('.cont-inputs .nome input').focusout(function() {
		if ($(this).attr("value") == "") {
			$(this).attr("value","nome / name");
		}
	});
	
	$('.cont-inputs .email input').focusin(function() {
		if ($(this).attr("value") == "email address") {
			$(this).attr("value","");
		}
	});
	
	$('.cont-inputs .email input').focusout(function() {
		if ($(this).attr("value") == "") {
			$(this).attr("value","email address");
		}
	});
	
	$('.cont-textarea .mensagem textarea').focusin(function() {
		if ($(this).val() == "mensagem / message") {
			$(this).val("");
		}
	});
	
	$('.cont-textarea .mensagem textarea').focusout(function() {
		if ($(this).val() == "") {
			$(this).val("mensagem / message");
		}
	});
});
