// JavaScript Document

// **** sostituisco tutte le immagini con un div
$(document).ready(function() {
	$(".myt img").each(function (s) {
		$(this).wrap("<div class='divimg' style='" + $(this).attr("style") + "'></div>");
		$(this).removeAttr("style");
		if ($(this).attr("alt") != "") {$(this).parent().append("<br>" + $(this).attr("alt")).height("auto");};
	});
});