// bookmarklet for twitter
$(function() {

    var bl_login  = 'rpasia';
    var bl_apiKey = 'R_39499c3384e668f1946db9ed0b27208e';

    $.getJSON('http://api.bit.ly/v3/shorten?' +
        "login=" + bl_login +
        "&apiKey=" + bl_apiKey +
        "&longUrl=" + encodeURIComponent(location.href) +
        "&callback=?",
        function(result) {
            title = $("h1.titleH101").text();
            title = title.replace(/(^\s+)|(\s+$)/g, "");
            if (title.length > 50) {
                title = title.slice(0, 50) + '...';
            }

            if (result.status_txt == 'OK') {
                $('#bookmarklet_twitter').attr('href',
                    'http://twitter.com/home?status=' +
                    encodeURIComponent(title) +
                    '+' + result.data.url +
                    '+@RPasia');
            }
        });
    $('#bookmarklet_twitter').attr('target', '_blank');

});

