


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

 
//Suche einblenden

var el = $('suchformular');

if($chk($('sucheeinblenden'))){
 
 $('sucheeinblenden').addEvent('click', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el.fade(1);
		document.getElementById('sucheeinblenden').style.zIndex = "5";
		document.getElementById('sucheausblenden').style.zIndex = "10";
	});
  $('sucheausblenden').addEvent('click', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el.fade(0);
		document.getElementById('sucheeinblenden').style.zIndex = "10";
		document.getElementById('sucheausblenden').style.zIndex = "5";
	});
	$('searchclose').addEvent('click', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el.fade(0);
		document.getElementById('sucheeinblenden').style.zIndex = "10";
		document.getElementById('sucheausblenden').style.zIndex = "5";
	});
}
});

 


 
		
