$(document).ready( function() {

	$('.caption img').each( function () {
			var width = $(this).width() + 'px';
			$(this).parent('.caption').css('width', width);
	});

	$('blockquote').prepend('<div class="prewrap">'+'</div><div class="wrap">').append('</div><div class="postwrap">'+'</div>');
	$('hr').wrap('<div class="hr"></div>');

	$('legend').each( function() {
		val = $(this).text();
		$(this).after('<h5 class="legend">' + val + '</h5>');
		$(this).html('');
	});

});
