$(document).ready(function(){
	
	$("#scheda_autore").dialog({
		autoOpen: false,
		draggable: false,
		minWidth: 710,
		minHeight: 210,
		width: 710,
		height: 210,
		modal: true,
		resizable: false
	});
	
	$(".ui-dialog-title").css({
		fontSize: "15px",
		fontWeight: "normal"
	});
	
	$(".ui-widget-header").css({
		backgroundColor: "#C61B21"
	});
	
	$("a.autore").click(function(){
		$.getJSON("/schedaAutore.php", { autore: $(this).attr("id") }, function(autore){
			$("#scheda_autore").html('<div class="testotopbox">' + autore.dettaglio + '</div>');
			$("#scheda_autore").dialog({
				title: autore.titolo.toUpperCase()
			});
			$("#scheda_autore").dialog("open");

			$(".ui-dialog-content").css({
				overflow: "none"
			});
			$(".ui-widget-overlay").css({
				opacity: 0.7
			});
		});
	});
});


