(function($){
  $.fn.email = function() {
    return this.each(function() {
      var e = $(this), s = e.closest(".share_this")

      var title = s.attr("data-title")
      var url   = s.attr("data-url")
      
      $.bitly(url, function(short_url){
        var mailto = "mailto:?subject=" + encodeURIComponent("Check out " + title + " at " + short_url)

        e.click(function(){
          $.jsonp("post", "/share/email.json", { title: title, url: url }, function(){
            window.location = mailto
          })
        })
        
      })

    })
  }
})(jQuery);
