		$(document).ready(function() 
		{
			$("#user").focus(function()
			{
				if(this.value == "e-mail")
				{
					this.value = "";
				}
			});
			
			$("#user").blur(function()
			{
				if(this.value == "")
				{
					this.value = "e-mail";				
				}
			});
			
			document.getElementById("pass").type = "text";
			
			$("#pass").focus(function()
			{
				if(this.value == "parool")
				{
					this.value = "";
				}
				this.type = "password";
				this.focus();
			});
			
			$("#pass").blur(function()
			{
				if(this.value == "")
				{
					this.value = "parool";	
					this.type = "text";			
				}
			});
			
		});
		