/*
	JAVASCRIPT
	EVENTS
*/

$(document).ready ( function ()
{
	// SEARCH
	/* ON FOCUS */
	$('#search').focus ( function ()
	{
		if (this.value == "Pesquisar")
  			 this.value = '';
	});

	/* ON FOCUS */
	$('#search').blur ( function ()
	{
		if (this.value == "")
  			 this.value = 'Pesquisar';
	});

	// MAILLING LIST
	/* ON FOCUS */
	$('#mail').focus ( function ()
	{
		if (this.value == "o seu email")
  			 this.value = '';
	});

	/* ON FOCUS */
	$('#mail').blur ( function ()
	{
		if (this.value == "")
  			 this.value = 'o seu email';
	});
});
