jQuery(function($){
    var uri = location.href;
    $("body").append("<h2>Comment</h2>")
        .append("<iframe src='http://v.okkez.net/rate?uri="+uri+"'>")
        .append("<div id='comments'><dl>");
    $.getJSON('http://v.okkez.net/uri?uri='+uri+'&callback=?', function(data){
        $.each(data, function(index, value){
            $("#comments dl")
                .append("<dt>"+value.name+" | "+ value.created_at.toString() +"</dt>")
                .append("<dd>"+value.message+"</dd>");
        });
    });
    $("iframe").css("border", "none");
    $("iframe").height("8em");
    $("iframe").width("530px");
});

