function setClass(){
	if(!document.getElementsByTagName){ return; }
	var anchors = document.getElementsByTagName("a");
	for(var i=0; i<anchors.length; i++){
		var anchor = anchors[i];
		if(anchor.getAttribute("href") && anchor.getAttribute("rel")){
			var regExp = new RegExp(anchor.getAttribute("rel"), "i");
			if(regExp.test(location.href)){
				anchor.className = "Selected";
			}
		}
	}		
}

function Init(){
	setClass();
}
		

window.onload = function(){
	Init();
}