window.onload = function(){
	var height = document.getElementById("content").offsetHeight;
	document.getElementById("mainCol").style.height = height+"px";
}

function parentHover(el){
	el.parentNode.parentNode.parentNode.firstChild.setAttribute("class", "hover");
}

function endHover(el){
	el.parentNode.parentNode.parentNode.firstChild.setAttribute("class", "sub");
}
