// JavaScript Document

google.setOnLoadCallback(function() {
	$(document).ready(function () {
		$("div#navigation").load( "includes/navigation.include.html div#navigationInclude", function() {
			$("div#navigationInclude li a").each( function( ii, n ) {
				$(n).parent().removeClass( "linkHighlight" );
															 
				 // For each span's class, if the body has a matching id then highlight it.
				 if( $(n).parent().attr("class") == $("body").attr("id") ) {
					 $(n).addClass( "linkHighlight" );
				 }
			});
		});
	});
});

