$(function(){
	
	//Compare the 3 boxes to get the tallest
	h = Math.max($("#apply .box_copy").height(), $("#in_focus .box_copy").height())
	h = Math.max(h, $("#latest_news .box_copy").height())
	
	//Set them to be the same
	$("#latest_news .box_copy, #apply .box_copy, #in_focus .box_copy").css({
		height: h
	})

})

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;