function allocateSidebarHeight() {
	var contentDom = document.getElementById("outer");
	var sidebarDom = document.getElementById("patern");
	var casetta = document.getElementById("casetta");
		sidebarDom.style.height = (contentDom.offsetHeight)+"px";
		//alert(sidebarDom.offsetLeft);
		casetta.style.marginLeft = sidebarDom.offsetLeft + "px";
};
startList = function() {
	allocateSidebarHeight();
};
window.onload=startList;
