﻿$(document).ready(function() {
    // A little bit of css cleanup
    $(".postActions").each(function() {
        $("a:last", this).css("border-right", "0");
        $("a:first", this).css("padding-left", "3px");
    });

    // Load most recent post lists
    $(".pbConnectBlogMostRecentPosts").each(function() {
        var id = $(this).attr("id");
        var hidid = "mrp_" + id.substring(16);
        $("#" + hidid).appendTo($(this));
    });
});