/*
$(function() {


    $('li.hentry').each(
        function(){
            elem=this;
            target = $(this).find('a[@rel="bookmark"]')  ;
            $(elem).click(
                function(){
                    $('div#below_body_slot').load($(target).attr('href') +'?fragmentonly=true');
                }
            )   
        }
    );  

});

*/




