// JavaScript Document
Behaviour.register({
'#SearchForm_SearchForm_Search' : {
onfocus : function() {
         if(this.value == 'Type Here') this.value = '';
},
onblur : function() {
   if(this.value == '') this.value = 'Type Here';
}
}
}); 