function TidyMenu() {
	// assume the <title> is "Syntropy - Top level - Second level"
	var subStrings=document.title.split(" - ");

	// if there is a top level selection, embolden it and display second level options
	if (subStrings.length > 1) {
		// don't attempt to support v4.x browsers, so just use getElementById()
		var topLevelCell=document.getElementById(subStrings[1]);
		
		if (topLevelCell) {
			topLevelCell.style.fontWeight="bold";
			topLevelCell.style.color='#ff0000';

			var secondLevelPartsCell=document.getElementById(subStrings[1] + " parts");
			
			if (secondLevelPartsCell) {
				secondLevelPartsCell.style.display="block";
	
				// if there is a second level selection, embolden it
				if (subStrings.length > 2) {
					var secondLevelCell=document.getElementById(subStrings[2]);
					secondLevelCell.style.fontWeight="bold";
				}
			}
		}
	}
}

