function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

/*
jQuery(document).ready(function() {
	ScaleSize();
	
	$(window).scroll(function () {ScaleSize();});
	$(window).resize(function () {ScaleSize();});
											  
});

function ScaleSize() {
	 if (window.innerHeight && window.scrollMaxY) {// Firefox
        yWithScroll = window.innerHeight + window.scrollMaxY;
        xWithScroll = window.innerWidth + window.scrollMaxX;
    } else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
        yWithScroll = document.body.scrollHeight;
        xWithScroll = document.body.scrollWidth;
    } else { // works in Explorer 6 Strict, Mozilla (not FF) and Safari
        yWithScroll = document.body.offsetHeight;
        xWithScroll = document.body.offsetWidth;
      }
	  
	if(document.getElementById("ctl00_Sfondo") != null)
	{
    document.getElementById("ctl00_Sfondo").style.width = xWithScroll + "px";
    document.getElementById("ctl00_Sfondo").style.height = yWithScroll + "px";
	}
}
*/