// JavaScript Document
function cycleLinks(){
	var x=document.getElementsByTagName("a");
	for(i=0;i<x.length;++i){
		if(x.item(i).className.search(/boldMe/i)>=0){
			boldURL(x.item(i),x.item(i).href);
		}
		if(x.item(i).className.search(/blueMe/i)>=0){
			blueURL(x.item(i),x.item(i).href);
		}
	}
}
function boldURL(x, fileName){
	var myRegExp = new RegExp(fileName,"i");
	var str = document.location.toString();
	if (str.search(myRegExp)>=0){
		x.style.fontWeight = "bold";
	}
}
function blueURL(x, fileName){
	var myRegExp = new RegExp(fileName,"i");
	var str = document.location.toString();
	if (str.search(myRegExp)>=0){
		x.style.color = "#005ed2";
	}
}