$(function() {
    var blogContent = $(".feed").html();
    $("#feed").html(blogContent);
    $("#feed li:nth-child(1)").addClass("first_feed");
    $("#feed li:last").css("border","none");
});