
	window.addEvent('domready', function() {
 
	$('username').addEvents({
		'focus': function(){ if (this.value == 'User Name' ) this.value = ''; }, 
		'blur': function(){  if (!this.value) this.value = 'User Name';  },
		'keydown': function(event){ if (event.key == 'enter') submitLogin() }
	});
	
	$('password').addEvents({
		'focus': function(){ if (this.value == 'Password' ){ this.value = ''; this.type = "password" }}, 
		'blur': function(){  if (!this.value){ this.value = 'Password'; this.type = "text"}  },
		'keydown': function(event){ if (event.key == 'enter') submitLogin() }
	});
	 
	})

