// JavaScript Document
function showAbout () {
	document.getElementById("about_menu").style.display="block";
	document.getElementById("about_menu").style.marginLeft="-25px";
}

function checkPage() {
	var myURL = window.location.href;
	switch(myURL) {
		case "http://www.brucerisdon.com/cv.php":
			break
		case "http://www.brucerisdon.com/bio.php":
			break
		default:
			document.getElementById("about_menu").style.display="none";
	}
}