		
		function getWindowWidth()
		{
			var windowWidth = 0;
			if (self.innerHeight)
			{
					windowWidth = self.innerWidth;
			}
			else if (document.documentElement && document.documentElement.clientHeight)
			{
					windowWidth = document.documentElement.clientWidth;
			}
			else if (document.body)
			{
					windowWidth = document.body.clientWidth;
			}
			return windowWidth;
		}
		
		
		
		function setStrip() {
			
		}
		
		
		function setStrip() {
			if (document.getElementById) {
			
				var windowWidth = getWindowWidth();
				var footerStrip = document.getElementById('strip');
				
				if (windowWidth > 0) {
					
					var leftPos = (Math.floor((windowWidth - 990)/2/34)+29)*34;
					
					if ( leftPos >= 0) {
						footerStrip.style.position = 'absolute';
						footerStrip.style.left = leftPos + 'px';
					}
					else {
						footerStrip.style.position = 'static';
					}
				}
			}
		}
		window.onload = function() {
			setStrip();
		}
		window.onresize = function() {
			setStrip();
		}

