var section = "";
$(document).ready(function() {
	var loc = new String(window.location);
	$('#sitemenu a').each(function() {
		var $this = $(this);
		var href = $this.attr("href");
		if (loc.substr(0, (loc.lastIndexOf("/") + 1)) == href) { $this.addClass("current"); }
	});
});
