window.addEvent('domready',function() {
//suchen ausfuellen 
	if($('ctrl_1')){
		$('ctrl_1').addEvents({
				'focus': function() {
					if (this.value.contains('Suchen...')) this.value = '';
				},
				'blur': function() {
					if(this.value == ('')) this.value ='Suchen...';
				}
			});
		};
	//autocomplete off
	if($('ctrl_1')){
		$('ctrl_1').setProperty('autocomplete', 'off');
	};
	if($('ctrl_keywords')){
		$('ctrl_keywords').setProperty('autocomplete', 'off');
	};
});
