// JavaScript Document
$(function() {
	// ol spanの追加
	$('#post img')
    .each(function(){
        $(this).wrap("<span class=\"post-imgbox\"></span>");
    })
	
	
	$('#post-item img')
    .each(function(){
        $(this).wrap("<span class=\"post-imgbox\"></span>");
    })
	
});
