function absolutePath(path) {
	var e = document.createElement('span');
	e.innerHTML = '<a href="' + path + '" />';
	return e.firstChild.pathname;
}


$(function() {
	var apath = absolutePath(location.pathname);
	$(".menu a").each(function() {
		if (absolutePath(this.href) == apath) {
			this.href = "#";
			this.parentNode.setAttribute("class", "current_page");
			this.parentNode.setAttribute("className", "current_page"); /* for IE */
		}
	});
	$(".buttons a").each(function () {
		if (absolutePath(this.href) == apath) {
			this.href = "#";
			this.setAttribute("class", "current_page");
			this.setAttribute("className", "current_page");
		}
	});

	$("#content").css("min-height", $("#sidebar").height());
});

