 function clearField(fld) {
  if (fld.value == "Suche") fld.value = "";
  if (fld.value == "search") fld.value = "";
}
/*
function clearField(form) {
        jQuery(form).find("input#q").each(function(){ 
            this.defaultValue = this.value;
            jQuery(this).click(function(){
                if(this.value == this.defaultValue){
                    jQuery(this).val("");
                }
                return false;
            });
            jQuery(this).blur(function(){
                if(this.value == ""){
                    jQuery(this).val(this.defaultValue);
                }
            });
        });
} 

$.fn.search = function() {
	return this.click(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};
$("input#q").search();*/
