function initForms(){
	var userObj = document.getElementById('username');
	var passObj = document.getElementById('password');
	if(userObj && passObj){
		userObj.onfocus = function(){
			if(this.value=='Username'){
				this.value = "";
			}
		}
		userObj.onblur = function(){
			if(this.value==''){
				this.value = "Username";
			}
		}
		
		passObj.onfocus = function(){
			if(this.value=='Password'){
				this.value = "";
				var passObj = this.cloneNode(true);
				passObj.type = "password";
				passObj.id = "password";
				this.parentNode.replaceChild(passObj,this);
				passObj.focus();
			}
		}
		
		passObj.onblur = function(){}
	}
}
