window.addEvent('domready', function() {
		$$('input').addEvent('click', function() {
			if(this.value == 'Name' || this.value == 'Telefon' || this.value == 'E-Mail' || this.value == 'Nachricht') {
				this.value = '';
			}
		});
		$$('input').addEvent('blur', function() {
			if(this.value == '' && this.name == 'Name') {
					this.value = 'Name';
			}
			if(this.value == '' && this.name == 'Telefon') {
				this.value = 'Telefon';
			}
			if(this.value == '' && this.name == 'EMail') {
					this.value = 'E-Mail';
			}
			if(this.value == '' && this.name == 'EMail') {
				this.value = 'e-Mail';
			}
		});
		$$('textarea').addEvent('click', function() {
			if(this.value == 'Nachricht') {
				this.value = '';
			}
		});
		$$('textarea').addEvent('blur', function() {
			if(this.value == '' && this.name == 'Nachricht') {
					this.value = 'Nachricht';
			}
		});
});
