/*
Force sidebar to be the same height as the wrapper to eliminate\
visual artifacts in IE6.
*/
if (document.all && window.attachEvent) window.attachEvent("onload", fixWinIE);
function fixWinIE() {
	varBottomPadding = parseInt(document.all.wrapper.currentStyle.paddingBottom);
	varTopPadding = parseInt(document.all.wrapper.currentStyle.paddingTop);
	if(document.all.divContent.offsetHeight < document.all.divSidebar.offsetHeight){
		document.all.divContent.style.height=document.all.divSidebar.offsetHeight;
		//alert("changed content");
	}else{
		document.all.divSidebar.style.height=document.all.wrapper.offsetHeight-varBottomPadding-varTopPadding;
		//alert("changed sidebar");
	}
}
