// JavaScript Document

//START QUOTES
startHeight = function() {
		var page = document.getElementById("page-container").offsetHeight; 
		var	right = page - 30;
		var	left = page;
		var	main = page - 30;
			document.getElementById("left").style.height= left + 'px';
			document.getElementById("main").style.height= main + 'px';
			document.getElementById("right").style.height= right + 'px';
	}
if (window.attachEvent)
window.attachEvent("onload", startHeight)
else
window.onload=startHeight;
//END QUOTES
