$(document).ready(function(){
/*
    $('a.post').click(function() {
        post_id = $(this).attr('id');
        match = post_id.match(/post\_([0-9]+)/);
        $.get('/go/blogpost/' + match[1] + '/');
        return true;
    });
*/
    $('a.post').mouseup(function() {
        post_id = $(this).attr('post_id');
        match = post_id.match(/([0-9]+)/);
        $.get('/go/blogpost/' + match[1] + '/');
        return true;
    });


});
