$(document).ready(function(){
    $('.friends a').each(function(){
        $(this).click(function(ev){
            ev.preventDefault();
            var uid = $(this).attr("href");

            var text = $.ajax({
                url: "/punch/"+uid+"/",
                async: false
            }).responseText;

            var attachment = {
                'name': text,
                'caption': 'pomperlist.org',
                'media': [{'type':'image',
                           'src':'http://pomperlist.org/media/img/baaam.jpg',
                           'href':'http://pomperlist.org/media/img/baaam.jpg' }]};
            var action_links = [{'text':'Give somebody a pomper?', 'href':'http://www.pomperlist.org/'}];  
            FB.Connect.streamPublish('', attachment, action_links, uid);
        });
    });

    function callback(post_id, exception){
        alert(post_id);
    }
    //100000351264253_443104550330
});