document.observe('dom:loaded', function(){
  $('search-query').observe('focus',function(e){
    Event.stop(e);
    if($(this).getValue()=='Search Knowledge Base'){ $(this).value=''; }
  })
  $('search-query').observe('blur',function(e){
	  Event.stop(e);
    if($(this).getValue()==''){ $(this).value='Search Knowledge Base'; }
  })
})
