$(function () { // EQUIVALENTE E DOCUMENT ONLOAD	$(".est").bind("click",function (event) {		window.open(this.href);return(false);	});			$("#servizi li").each(function () {		$(this).bind("click",function (event) {			link = $(this).children("a").attr("href");			location.href = link;		});		});		});function createXMLHttpRequest() {    if (window.ActiveXObject) {        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");    }     else if (window.XMLHttpRequest) {        xmlHttp = new XMLHttpRequest();    }}
