/* Remove default value from search form on focus */

/*
$(document).ready(function() {  
	$('input.suche').focus(function() { 
		
	   if (this.value == this.defaultValue){  
	   this.value = '';  
	   	}  
		
		if(this.value != this.defaultValue){  
	    this.select();  
	   	} 
	  } ); 
	   
	   
	$('input.suche').blur(function() {  
	          if ($.trim(this.value) == ''){  
	         this.value = (this.defaultValue ? this.defaultValue : '');  
	     }  
	 });
	 
	});
*/
