/**
 * @author unsub
 */
$(document).ready(
	function(){
		$(function(){
			$('.post img').css('float','none').wrap('<div class="imgWrap1">').each(function(){
				$('<p/>').html($(this).attr('title')).insertAfter($(this));
				//load(makeImgCaption);
			});
		});
	
		function makeImgCaption(){
			$('<p/>').html($(this).attr('title')).insertAfter($(this));
		}
	}
);
