$(function()
{
	$('#email')
		.focus(function()
		{
			if(this.value == 'user@domain.com')
				this.value = '';
		})
		.blur(function()
		{
			if(this.value == '')
				this.value = 'user@domain.com';
		});

	$('#password')
		.focus(function()
		{
			if(this.value == '@@@@@@@@')
				this.value = '';
		})
		.blur(function()
		{
			if(this.value == '')
				this.value = '@@@@@@@@';
		});
});