function print() {}

function setCurrentLink(id) {
	//print(window.location.href);
	as=document.getElementById(id).getElementsByTagName('a');
	for (x=0;x<as.length;x++) {
		var link=as[x].href.replace('index.html','');				
		print (link);
		if (window.location.href.indexOf(link)>=0) {
			print('the line is pure');
			as[x].className='current';
		}
	}

}
// setCurrentLink('MenuBar1');