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

//suchleistenbegriff bei klick entfernen
if ($('ctrl_25')){
	$('ctrl_25').addEvents({
				'focus': function() {
					if (this.value.contains('Suchbegriff eingeben')) this.value = '';
				},
				'blur': function() {
					if(this.value == ('')) this.value ='Suchbegriff eingeben';
				}
			});
			
		}
//popup bei den leistungsauflistung
	var t = new Tips('.leistungsliste li.popup');
	$$('.tip').each(function(tip){
		var imgSrc = tip.retrieve('tip:text');
		var imgAlt = tip.retrieve('tip:title');
		tip.store('tip:text', new Element('img',{'src':imgSrc,'alt':imgAlt}));
	});	
	$$('.leistungsliste a').set('title', '');

//popup bei Green Clean
	//close button zusaetzlich setzen
	if($('greenclean_tip')){
		var content=$('greenclean_tip').get('html');
		$('greenclean_tip').set('html', content,'<div class="close">schlie&szlig;en</div>');
	
	//popup oeffnen
	$('greenclean_tip').fade('out');
	$$('.home .mod_xseitenbilder').addEvent('click', function(){
				
				$('greenclean_tip').fade('toggle');
				$('greenclean_tip').addClass('active');	
	});	
	//popup schliessen
	$$('#greenclean_tip .close').addEvent('click', function(){
		$('greenclean_tip').fade('toggle');
	})
	}
});
