function inputDefault(id, defaulttxt) {
  if($('#' + id).length = 0) {
    return;
  }

  $('#' + id).val(defaulttxt);
  
  $('#' + id).focus(function() {
    if($('#' + id).val() == defaulttxt) {
      $('#' + id).val('');
    }
  });
  
  $('#' + id).blur(function() {
    if($('#' + id).val() == '') {
      $('#' + id).val(defaulttxt);
    }
  });
}

(function($) {

  $(document).ready(function() {
    
    inputDefault('s', 'to search, type and hit enter');
    inputDefault('mce-EMAIL', 'type your email and subscribe to our newsletter');
    
  });
  
})(jQuery);