// JavaScript Document

function setActivePage() {
	
try {	
	
root=document.getElementById('navbar');
if (location!='') { loc = location; }
node = toolbox_nodes_getActiveLink(root,loc);
if (node.className=='first') {
node.className='firstcurrent';
} else {
node.className='current';
}
node.onmouseover=function() { void(0); }

} catch(e) { }


}


