/*
On page ready, resize the nav bar to the full site height 
*/

$(document).ready(function() {
	
	$('#pageContentTabs').tabs({onShow: resizeNav}).show();
		
	$(window).load(resizeNav);
	
});


function resizeNav() {
	var contH = parseInt($("#siteContent").height());
	var navH  = parseInt($("#siteNav").height());
	//$.log(contH+" "+navH);
	if (contH!=navH) { 
		//$.log('shift');
		$("#siteNav").height(contH);	
	}
};
