/* 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) {
	//alert("turnBackBold");
	var anchors = document.links;
	for (i=0; i<anchors.length; i++) {
		anchors[i].style.fontWeight = '300';
		anchors[i].style.color = '#777';
		if(speclink){
		}else{
			loc = top.mainFrame.location.href+"";
			locHref = loc.split("/");
			locHref = locHref[locHref.length-1];
			
			aHref = anchors[i].href+"";
			aHref = aHref.split("/");
			aHref = aHref[aHref.length-1];
			//alert(locHref+" = "+aHref);
			if(locHref == aHref){
				//alert("found:"+i);
				anchors[i].style.fontWeight = '900';
				anchors[i].style.color = '#000';
			}
		}
	}
	if(speclink){
		speclink.style.fontWeight = '900';
		speclink.style.color = '#000';
	}
}

