$(document).ready(function() {
  $('#search-submit').hide();
  $('a').each(function(index, elem) {
    if ((elem.href.match('http://') || elem.href.match('https://')) && ! elem.href.match(document.location.host)) {
      $(elem).click(function() {
        window.open(this.href);
        return false;
      });
    }
  });
});
