window.addEvent('domready', function() {





// Suche
		$$('input[type=text]').each(function(item) { // array all inputs
 	 	var save = item.value;
		item.addEvents({ 'focus': function() { if(this.value == save) this.value = ''; this.setStyle('color','#333333'); } });
		item.addEvents({ 'blur': function() { if(this.value=='') this.value = save; this.setStyle('color','#999999'); } });
	});
});
