/*$(document).ready(function () {
	$("h3 + p").attr("class","hidden");
	$("h3").wrap("<a href=\"javascript:;\"></a>");
	$("h3").click(function (e) {
		var titolo = $(this).text();
		var testo = $(this).parent().next().text();
		$.modal("<h3>" + titolo + "</h3><p>" + testo + "</p>");
	});
});*/
