$(document).ready(function(){

		if ($('.sideimg')) {

		$('.sideimg').each(function(index) {

			var nWidth = $(this).attr('width') + 0;

			var insText = '<div style="width: ' + nWidth + 'px;" class="imgholder">';

			insText = insText + '<img width="' + $(this).attr('width') + '" src="' + $(this).attr('src') + '\" />';

			var titleTxt;

			if ($(this).attr('alt')) {

				titleTxt = $(this).attr('alt');

			} else {

				titleTxt = $(this).attr('title');

			}

			insText = insText + '<div class="caption">' + titleTxt + '</div>'

			insText = insText + '</div>';

			$(insText).insertAfter(this);

			$(this).remove();

 	 	});

		}

});


