$(function() {
	// Make all columns the same height
	var height = $('#col-center').height();
	if($('#col-right').height() > height) height = $('#col-right').height();
	$('#col-center').css({minHeight : height});
	$('#col-right').css({minHeight : height});
	// Highlight the page in the menu
	$('#nav a').each(function() { 
		if($(this).attr('href') == window.location.href) {
			// Loop through any parents and highlight them
			$(this).parents('#nav li').children('a:first-child').addClass('navPage');
		}
	});
});
