dom.event.addEventListener(window, 'load', posCloth);

function posCloth() {
	var getID = document.getElementById("foot_cloth");
	var bodyHeight = document.getElementById("wrapper").offsetHeight;
	getID.style.top = bodyHeight+ 60 + "px";
	getID.style.display = "block";
	
	/*
	msIE6 = (navigator.userAgent.indexOf("MSIE 6") != -1)? true : false;
	if(msIE6) {
			if(!document.getElementById("news")) {
				getID.style.top = bodyHeight+ 220 + "px";
			}
	}
	*/
	
}