﻿$(document).ready(function () {

	$('.module').each(function () {
		var elem_body = $(this).find('.module_body');
		var elem_body_html = elem_body.html();
		if (elem_body_html == '') {
			elem_body.remove();
			$(this).find('.module_bottom').remove();
			$(this).find('.module_top').remove();
		}
	});

	$('div.widetext img, div.plaintext_content img, div.thetext img, div.fulltext img').each(function () {
		var attr = $(this).attr('alt');
		if (typeof attr !== 'undefined' && attr !== false) {
			$(this).wrap('<div class="caption"></div>').after('<div style="width: ' + $(this).width() + 'px">' + attr + '</div>');
		}
	});
});

