Behaviour.register({
'#SearchForm_SearchForm_Search' : {
onfocus : function() {
         if(this.value == 'Hae') this.value = '';
},
onblur : function() {
   if(this.value == '') this.value = 'Hae';
}
}
}); 