var evento = [];

function calendar(dataesplosa,etichettagiorno) {

	document.getElementById("evento-esploso").innerHTML = "";
	
	for (i in evento[dataesplosa]) {
		//alert(evento[dataesplosa][i]);
		newElem = document.createElement("DIV");
		newElem.className="date";	
		newBR = document.createElement("br");
		newDate = document.createTextNode(etichettagiorno);
		newTitle = document.createTextNode(evento[dataesplosa][i]);
		newElem.appendChild(newDate);
		document.getElementById("evento-esploso").appendChild(newElem);
		document.getElementById("evento-esploso").appendChild(newTitle);
		document.getElementById("evento-esploso").appendChild(newBR);
       }
}
function calendarspalla(dataesplosa,etichettagiorno) {

	document.getElementById("evento-esploso-spalla").innerHTML = "";
	
	for (i in evento[dataesplosa]) {
		//alert(evento[dataesplosa][i]);
		newElem = document.createElement("DIV");
		newElem.className="date";	
		newBR = document.createElement("br");
		newDate = document.createTextNode(etichettagiorno);
		newTitle = document.createTextNode(evento[dataesplosa][i]);
		newElem.appendChild(newDate);
		document.getElementById("evento-esploso-spalla").appendChild(newElem);
		document.getElementById("evento-esploso-spalla").appendChild(newTitle);
		document.getElementById("evento-esploso-spalla").appendChild(newBR);
       }
}