$(document).ready(function(){
	var jurlpath = jQuery.url.attr("path");
	var jcurrentfile = jQuery.url.attr("file");
	var jdir = jQuery.url.attr("directory");
	var count = 0;
	if(jcurrentfile == null){
		jurlpath += "index.html";
	}
	$("#topSubnav a, #sidenav a").each(function () {
		var jcurrentpath = $(this).attr("href");
		if(jurlpath == jcurrentpath || jcurrentpath.match(jdir) && count == 0) {
			$(this).addClass("on");
			count = 1;
		}
	});
});

