function setMenuHighlight() {
	//Determine special cases first
	if (window.location.href.indexOf("/tipsandadvice/") > -1) {
		var lnks = document.getElementById('menu').getElementsByTagName('a');
		for (var i=0; i < lnks.length; i++) {
			if (lnks[i].innerHTML == "Tips and Advice") {
				lnks[i].setAttribute('class', 'selected');
				lnks[i].setAttribute('className', 'selected');
				return;
			}
		}
	}
	
	//General rules
	var menu = document.getElementById('menu');
	var category = menu.firstChild;
	var links;
	while (category != null) {
		if (category.nodeName == 'LI') {
			links = category.getElementsByTagName('a');
			for (var i=0; i < links.length; i++) {
				if (window.location.href == links[i].href) {
					links[0].setAttribute('class', 'selected');
					links[0].setAttribute('className', 'selected');
					return;
				}
			}
		}
		category = category.nextSibling;
	}
}
