$(function(){
    $("a.more-link").each(function(){
 	var article = $(this).parents('div.article').first();
	$(this).wrap('<p style="margin-top: 1.0em" />');
 	article.children("div.article_navi").css("margin-top", "-1.0em");
    });
});

