jQuery(document).ready(function(){
	
    jQuery('.slideTrigger').bind('click', function(){
        var id = this.id.replace(/link-/, "");
        jQuery('#'+id).slideToggle();
        jQuery('#'+id+'block li.hidden').slideToggle();
        return false;
    });
	
	jQuery('#MookwatSearchForm_SearchForm_Search').focus(function() {
		this.value = this.value == "Suchen..."?"":this.value;
		this.select();
	}).blur(function() {
		this.value = this.value == ""?"Suchen...":this.value;
	});
    
});

