onload = function () {
	entries = document.getElementById("sidebar").getElementsByTagName("li");
	for (i = 0; i < entries.length; i++) {
		if (entries[i].firstChild.toString() == document.location) {
			entries[i].className += " current";
		}
	}
}
