/////////////////////////////////////////////////////
// RIDIMENSIONAMENTO GLOBALE
/////////////////////////////////////////////////////

var functionArReDim = [];

var widthScreen;
var heightScreen;


window.onresize = function() {
	readDim();
	for (var i=functionArReDim.length; i--;) {
		if(functionArReDim[i]){
			new functionArReDim[i];
		}
	}
}

// LETTURA DELLE DIMENSIONI DELLA FINESTRA
function readDim(){
	widthScreen = document.compatMode=='CSS1Compat'?document.documentElement.clientWidth:document.body.clientWidth;
	heightScreen = document.compatMode=='CSS1Compat'?document.documentElement.clientHeight:document.body.clientHeight;			
}
