/* Sharing
---------------------------------------------------------------------- */

$(function() {
  object_tools = $('div.content_tools');
  object_tools.find('input').click(function() { this.select(); });
  extended_sharing = object_tools.find('.extended_sharing');
  if (extended_sharing) {
    extended_sharing.hide();
    $('<a href="#">More sharing options</a>').click( function(e) {
      e.preventDefault();
      extended_sharing.slideToggle(); 
      $(this).toggleText('More sharing options', 'Fewer sharing options');
      return false; 
      })
      .appendTo(object_tools.find('.sharing_links'))
      .wrap('<li class="more_sharing"></li>');
  }  
});

