// JavaScript Document

function turnBold (speclink) {
	 var anchors = document.links
	 for (i=0; i<anchors.length; i++) {
    anchors[i].style.fontWeight = '300';
	 }
	 speclink.style.fontWeight = '900';
}
