$(document).ready(function(){
  $('#search-forums').hide();
  button = $("<a/>");
  button.text('Search');
  button.css('float','right');
  button.addClass('search-button');
  button.click(function(){
    $('#search-forums').show();
    $('#search-box').focus();
    $(this).hide();
  });
  $('#search-forums').before(button);
});