$(document).ready(function() {
	$("#bodycontent img.captionT").each(function(counter,element) {
		if ( $(this).attr('align') == "right" )
			$(element).wrap("<div class=\"imageBorder\" style=\"float: right; width: " + $(this).attr('width') + "\"></div>");
		else if ( $(this).attr('align') == "left" )
			$(element).wrap("<div class=\"imageBorder\" style=\"float: right; width: " + $(this).attr('width') + "\"></div>");
		this.align = "";
		$(element).before( "<p>" + $(this).attr('alt') + "</p>" );
	});
	$("#bodycontent img.captionB").each(function(counter,element) {
		if ( $(this).attr('align') == "right" )
			$(element).wrap("<div class=\"imageBorder\" style=\"float: right; width: " + $(this).attr('width') + "\"></div>");
		else if ( $(this).attr('align') == "left" )
			$(element).wrap("<div class=\"imageBorder\" style=\"float: right; width: " + $(this).attr('width') + "\"></div>");
		this.align = "";
		$(element).after( "<p>" + $(this).attr('alt') + "</p>" );
	});
});