(function($){

    $(function(){
    
        $('a[rel="shareit"]').hover(function(){
        
            var link = $(this).parents('div.post').find('a.readon').attr('href');
            link = encodeURIComponent(location.protocol + '//' + location.hostname + link);
            var title = $(this).parents('div.post').find('h2').text();
            
            $('<div><a class="fb" href="http://www.facebook.com/share.php?u=' + link + '&t=' + encodeURIComponent(title) + '" target="_blank">Facebook</a>' +
            '<a target="_blank" href="http://unofficialsquaw.com/twitter.php?status=' + title + '&link=' + link+'" class="tw">Twitter</a></div>').appendTo(this);
            
        }, function(){
            $(this).children().remove();
        })
        
        
    });
    
})(jQuery);
