// JavaScript Document
function setOnState() {
 alist=document.getElementById("tabbedHeaderUL").getElementsByTagName('a');
	for (var i =0; i < alist.length; i++) {
		if (window.location.pathname.indexOf(alist[i].id) >0 ){
		alist[i].href="javascript:void(0)";
 			var currTabElem = alist[i].parentNode;
			currTabElem.setAttribute("class", "current");
			currTabElem.setAttribute("className", "current");
			break;
		} 
	}
}
