	function rollover_home_ajax(outputFile){
		
		<!-- // Required to be compliant with XHTML-->
		 var xmlHttp=null; // Defines that xmlHttp is a new variable.
		 // Try to get the right object for different browser
		 try {
				// Firefox, Opera 8.0+, Safari, IE7+
				xmlHttp = new XMLHttpRequest(); // xmlHttp is now a XMLHttpRequest.
		 } catch (e) {
				// Internet Explorer
				try {
					 xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
				} catch (e) {
					 xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
				}
		 }
		 xmlHttp.onreadystatechange = function() {
				 try { // In some instances, status cannot be retrieved and will produce 
								 // an error (e.g. Port is not responsive)
							if (xmlHttp.status == 200) {
								 // Set the main HTML of the body to the info provided by the 
								 // AJAX Request
								 document.getElementById("home_ajax").style.display = 'block';
								 document.getElementById("home_ajax").innerHTML 
										= xmlHttp.responseText;
							}
					 } catch (e) {
							document.getElementById("home_ajax").innerHTML 
								 = "Error on Ajax return call : " + e.description;
					 }
		 
		 }
		 //get_nav_ajax(outputFile);
		 xmlHttp.open("get","EVENTI-home/home_ajax_"+outputFile+"_teaser.html"); // .open(RequestType, Source);
		 xmlHttp.send(null); // Since there is no supplied form, null takes its place 
		 // as a new form.
	}

	function get_home_ajax(outputFile){
		<!-- // Required to be compliant with XHTML-->
		 var xmlHttp=null; // Defines that xmlHttp is a new variable.
		 // Try to get the right object for different browser
		 try {
				// Firefox, Opera 8.0+, Safari, IE7+
				xmlHttp = new XMLHttpRequest(); // xmlHttp is now a XMLHttpRequest.
		 } catch (e) {
				// Internet Explorer
				try {
					 xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
				} catch (e) {
					 xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
				}
		 }
		 xmlHttp.onreadystatechange = function() {
				if (xmlHttp.readyState == 4)
					 try { // In some instances, status cannot be retrieved and will produce 
								 // an error (e.g. Port is not responsive)
							if (xmlHttp.status == 200) {
								 // Set the main HTML of the body to the info provided by the 
								 // AJAX Request
								document.getElementById("home_ajax").style.display = 'none';
								 document.getElementById("home_ajax_content").innerHTML 
										= xmlHttp.responseText;
							}
					 } catch (e) {
							document.getElementById("home_ajax_content").innerHTML 
								 = "Error on Ajax return call : " + e.description;
					 }
		 
		 }
		 get_nav_ajax(outputFile);
		 xmlHttp.open("get","EVENTI-home/home_ajax_"+outputFile+".html"); // .open(RequestType, Source);
		 xmlHttp.send(null); // Since there is no supplied form, null takes its place 
												 // as a new form.
		 
	}
	
	function get_nav_ajax(outputNavFile){
		<!-- // Required to be compliant with XHTML-->
		 var xmlHttp=null; // Defines that xmlHttp is a new variable.
		 // Try to get the right object for different browser
		 try {
				// Firefox, Opera 8.0+, Safari, IE7+
				xmlHttp = new XMLHttpRequest(); // xmlHttp is now a XMLHttpRequest.
		 } catch (e) {
				// Internet Explorer
				try {
					 xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
				} catch (e) {
					 xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
				}
		 }
		 xmlHttp.onreadystatechange = function() {
				if (xmlHttp.readyState == 4)
					 try { // In some instances, status cannot be retrieved and will produce 
								 // an error (e.g. Port is not responsive)
							if (xmlHttp.status == 200) {
								 // Set the main HTML of the body to the info provided by the 
								 // AJAX Request
								 document.getElementById("mid_nav").innerHTML 
										= xmlHttp.responseText;
							}
					 } catch (e) {
							document.getElementById("mid_nav").innerHTML 
								 = "Error on Ajax return call : " + e.description;
					 }
		 
		 }
		 xmlHttp.open("get","EVENTI-home/mid_nav_"+outputNavFile+".html"); // .open(RequestType, Source);
		 xmlHttp.send(null); // Since there is no supplied form, null takes its place 
												 // as a new form.
	}