$('document').ready(function() {

	//var fraseTextArea = $('#frase');

	makeToogle('#nome', 'Nome');
	makeToogle('#email', 'Email');
	makeToogle('#assunto', 'Assunto');
	makeToogle('#mensagem', 'Mensagem');

});

function makeToogle(nodeId, valorInicial) {

	node = $(nodeId);
	node[0].valorInicial = valorInicial;

	node.focus(function() {
		if (this.value == this.valorInicial) {
			this.value = '';
		}
	});

	node.blur(function() {
		if (this.value == '') {
			this.value = this.valorInicial;
		}
	});

}
