window.addEvent('domready', function(){
	var emailtext = '';
	var searchtext = '';

	$$('#newsletter_input').addEvents({
		'focus': function () {
			if (this.value == 'E-Mail Adresse' || this.value == 'Email address') {
				emailtext = this.value;
				this.value = '';
			}
		},
		'blur': function () {
			if (this.value.replace (/^\s+/, '').replace (/\s+$/, '') == '') {
				this.value = emailtext;
			}
		}
	});

	$$('#newsletter_input_footer').addEvents({
		'focus': function () {
			if (this.value == 'E-Mail Adresse' || this.value == 'Email address') {
				emailtext = this.value;
				this.value = '';
			}
		},
		'blur': function () {
			if (this.value.replace (/^\s+/, '').replace (/\s+$/, '') == '') {
				this.value = emailtext;
			}
		}
	});

	$$("input.searchbox").addEvents ({
		'focus': function() {
			if ( this.value == "Was suchen Sie?" || this.value == "What are you looking for?" ) {
					searchtext = this.value;
					this.value = "";
			}
		},
		'blur': function() {
			if ( this.value.replace (/^\s+/, '').replace (/\s+$/, '') == '' ) {
					this.value = searchtext;
			}
		}
	});
});
