// JavaScript Document
// JavaScript Document// before rendering the page...
$(document).ready( function() {
							
	// figure out server
	var server = window.location.protocol + "//" + window.location.host;
			

	// main menu highlighting
	$('#nav li a').each(function(){
		var href = $(this).attr('href');
		//alert(href);
		if( window.location.href.indexOf( server + href ) >= 0 && href.length > 1 ) {
			

			$(this).addClass("current");
			$(this).parent().addClass("current");
		}
	});

	// section menu highlighting
	var $currentAnchor = null;
	$('#subnav li a').each(function(){
		var href = $(this).attr('href');
		if( window.location.href.indexOf( server + href ) >= 0 && href.length > 1 ) {
			$(this).addClass("current");

	
	
			if ($currentAnchor != null) {
						
				$currentAnchor.removeClass("current"); // remove top-level section highlight
			} else {

				$currentAnchor = $(this);	
			}
		}
	});



							});