/*
On page ready, resize the nav bar to the full site height 
*/

$(document).ready(function() {
	var contH = $("#siteContainer").height();
	var headH = $(".siteHeaderLarge").height();
	var navH = parseInt(contH - headH);
	$("#nav").height(navH+5);
});