jQuery().ready(function(){
	
	$('.storycontent img').each(function() {
		$(this).wrap('<div class="img_body" />');
		$(this).parent().wrap('<div class="postimg" />');
		$(this).parent().before('<div class="img_top">&nbsp;</div>');
		$(this).parent().after('<div class="img_bottom">&nbsp;</div>');
	});

});
