<!--
/*
	Highlights the top nav
*/
function highlightTopMenuLink( id ) {

	// loop through the links in the document
	for( var i=0; i < document.links.length; i++ ) {
		if( id == document.links[i].id ) {
			document.links[i].className = 'active';
			break;
		}
	}
	
	return;
}

// -->
