// Start the Sidebar and Main navigation scripts to change the highlight
// of the current category or page.
$(document).ready(function(){
	// Highlight the current page item in sidebar navigation
	var str=location.href.toLowerCase();
	$(".navigation li a").each(function() {
		if (str.indexOf(this.href.toLowerCase()) > -1) {
			$("li.highlight").removeClass("highlight");
			$(this).parent().addClass("highlight");
		}
	});
	// Highlight the tertiary items in sidebar navigation
	$("li.highlight").parents().each(function() {
		if ($(this).is("li")){
			$(this).addClass("highlight");
		}
	});	
});
