// JavaScript Document
$(document).ready(function() {
	var loc = location.pathname.replace(/[^\/]*$/, "");
	$("#nav li").each(function() {
		var linkurl = $(this).find("a").attr("href");
		if (loc === linkurl) {
			$(this).addClass("currentpage");
		} // if
	}); // nav li.each
}); // document.ready

