$(function() {
  $('a[rel*=external], div.share a').each(function(){
    $(this).click(function(){
      window.open(this.href,"_blank");
      return false;
    });
  });
  $('form').submit(function(){
    $(this).each(function(){
      var input = $(this).find('div.submit input');
      input.attr("disabled","disabled");
      input.addClass("disabled");
    });
  });
  $('div.share p').append(' <a href="#" class="share-other">Share</a>');
  $('div.share a.share-other').click(function(ev){
    ev.preventDefault();
    var otherIcons = $('div.share ul')
    if(otherIcons.is(':visible')){
      otherIcons.fadeOut();
    } else {
      otherIcons.fadeIn();
    }
  })
  $('div.share ul').hide();
});