/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Calvin Leung | http://www.pphresh.com */
function turnBackBold (speclink) {
	 var anchors = document.links
	 for (i=0; i<anchors.length; i++) {
    anchors[i].style.fontWeight = '300';
	 }
	 speclink.style.fontWeight = '900';
}
// JavaScript Document


