$(document).ready(function(){
  // Adds and removes search text
  $('#header #site-search input[type="text"]').addClass('watermark');
  $('#header #site-search input[type="text"]').focus(function(){
    $(this).filter(function(){
      return $(this).val() === '' || $(this).val() === 'Search';
    }).removeClass('watermark').addClass('text').val('');
  }).blur(function(){
    $(this).filter(function(){
      return $(this).val() === '';
    }).removeClass('text').addClass('watermark').val('Search');
  });
});
  
  
