<!--

/*
	Highlights a secondary menu item
*/
function highlightSecondaryMenuLink( 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 = 'secondaryNavLinkSelected';
			break;
		}
	}
	
	return;
}

/*
	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 = 'menuLinkSelected';
			break;
		}
	}
	
	return;
}

	
/*
	Highlights the bottom nav
*/
function highlightLowerMenuLink( 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 = 'menuLinkFooterSelected';
			break;
		}
	}
	
	return;
}

// -->
