// JavaScript Document
window.onload = function() {
	var leftHeight = heightCheck(document.getElementById('center'));
	var rightHeight = heightCheck(document.getElementById('right'));
	
	if ((leftHeight != false) && (rightHeight != false)) {
		if (rightHeight > leftHeight) {
			document.getElementById('center').style.height = rightHeight-36+"px";
			
			var resources = document.getElementById('resources');
			resources.style.position = "absolute";
			resources.style.bottom = "0";
			resources.style.paddingTop = "0";
		}
	}
	
	ieNav();
	googleImg();
}  // End onload