  	function getWindowWidth() {
		if (typeof(window.innerWidth) == 'number') return window.innerWidth;
		var d = document; 
		var b = d.body ? d.body : d.documentElement;
		return b.clientWidth;
	}
	var navDiv = document.getElementById('cms_elastic');
	function positionNavigation() {
		var x = Math.round(getWindowWidth() / 2 - 386);
	    if (x < 5) {
			x = 5;
            fixFlash(true);
        }
        //navDiv.style.left = x + 'px';
		navDiv.style.right = '0px';
		//alert("toto");
	}
	positionNavigation();
	window.onresize = positionNavigation;
	document.getElementById('cms_elasticHead').style.display = 'none';
	var nav = new ElasticFloat("cms_elastic", 0.4, 0.4, 200, 100);
