/*
On page ready, resize the nav bar to the full site height 
*/

// The index page doesn't have a nav,
// so it sets the dontResizeNav = true
if (typeof(dontResizeNav)=="undefined") {

	$(resizeNav);
	$(window).load(resizeNav);
	
}

function resizeNav() {
	var newHeight = parseInt($("#contentWrap").get(0).offsetHeight);
	$("#subnav").height(newHeight);
};