$(document).ready(function() {
	$.each($('.contentManaged .sidebox'), function() {
		if($(this).children('.sidebox-body').text().replace(/^\s+|\s+$/g,"") == "") {
			$(this).css('display','none');
		} else {
			$(this).css('display','block');
		}
	});

	$('.contentManaged table tr:last-child').addClass('last');
	
	$('.contentManaged img.frame').each(function() { // APPLY IMAGE TREATMENT /*IMG MAX WIDTH 259 PIXELS*/
		if(!$(this).parent().hasClass('main')) {
			$(this).parent().addClass('wipeout');
			$(this).insertBefore($(this).parent());
			$('.wipeout').remove();
		}
		$(this).wrap('<div class="img-frame"></div>');
		$(this).parent().css("float",$(this).css("float"));
		if($(this).parent().css("float") == "right") {
			$(this).parent().css("margin","15px 0 15px 25px");
			$(this).parent().css("clear","right");
		} else if($(this).parent().css("float") == "left") {
			$(this).parent().css("margin","15px 25px 15px 0");
		}
		$(this).after('<div class="img-head"></div><div class="img-foot"></div><div class="img-caption">'+ $(this).attr("alt") +'</div>');
		$(this).parent().height(parseFloat($(this).attr("height"))+28);
	});
});