$('li.node_read_more a').click(function(){
var url = $(this).attr('href');
var link = this;
$.get(url,function(data) {
var $content = $('.node .content', data);
var html = $content.html();
$(link).parents('div.node').find('div.content').html(html);
$(link).hide();
});
return false;
});
<code>
(function($){
$(document).ready(function(){
img = $('#logo img')
$('.node .content').prepend(img.addClass('pos').css({'float':'left','margin-right':'10px'}))
});
})(jQuery);