<!--

var STD = (document.getElementById) ? 1 : 0;
if (STD)	window.onresize = pos;

function pos(){
	if (STD){
		divElements = document.body.getElementsByTagName("DIV");
		if( typeof( window.innerWidth ) == "number" ) {
			winWidth = window.innerWidth;

		} else if( document.documentElement &&	document.documentElement.clientWidth ) {
			//IE 6+ in "standards compliant mode"
			winWidth = document.documentElement.clientWidth + 18;

		} else if( document.body && document.body.clientWidth ) {
			winWidth = document.body.clientWidth + 18;
		}
		
		mainPos = parseInt(document.getElementById("main").style.left) - 8;

		xOffSet = winWidth / 2 - 400 - mainPos;
		
		if (xOffSet < -mainPos) xOffSet = - mainPos;
		
		divSub = document.getElementById("sub");
		for (i=0; i<divElements.length; i++){
		
			divObj = divElements[i];
			
			if (divObj != divSub){
				pos = parseInt(divObj.style.left);
				
				if (pos) {
					pos +=xOffSet;
					divObj.style.left=pos+"px";
				}
			}
		}
	}
}

eval(unescape('%66%75%6e%63%74%69%6f%6e%20%67%6f%28%77%68%69%63%68%29%7b%77%69%6e%64%6f%77%2e%6c%6f%63%61%74%69%6f%6e%3d%77%68%69%63%68%3b%7d'));


//-->