/**
 * blogFeed.js
 * nagai.kiwami.com
 * created 2010-03-18
 * modfied 2010-03-18
 */

$(document).ready(function(){
    $.ajax({
        type: "GET",
        url: "blogFeed.php",
        success: function(html) {
            $("#blogLoader").append(html);
        }
    });
});

