function Splash_TextInput() {

	var textInputs = $$('input,textarea');

	textInputs.each(function(input) {
			input.addEvent('focus', function(event) {
				if (this.id != 'mini_password') {
					if(this.value == this.defaultValue) { this.value = ""; }	
				} else {
					if (this.value == this.defaultValue) {
						this.type = 'password';
						this.value = "";
					}
				}
			});
			input.addEvent('blur', function(event) {
				if (this.id != 'mini_password') {
					if (this.value == "") { this.value = this.defaultValue; }
				} else {
					if (this.value == "") {
						this.type = 'text';
						this.value = this.defaultValue;
					}
				}
			});
	});
}
