// JavaScript Document

// track what page we're on and bold the appropriate link

function set_page() {
	url = (location.href);
	paths = url.split("/");
	this_page = (paths[paths.length-1]);
	pos = this_page.indexOf(".html");
	page = this_page.substr(0,pos);
	
	obj = document.getElementById(page);
	obj.style.fontWeight = "bold";
	obj.style.color = "#9e260e";
	}
