$(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('');
	});
	
	/* Social Networking Links */
	/* 
	$('#action-socialnetworking').removeClass('open').click(function(){
		$('#social-network-panel').slideToggle('slow',function(){
			$('#action-socialnetworking').toggleClass('open');
		});
	});
	$('#social-network-panel').hide();
*/

});