<!--

highlightBackgroundColor = "#F7F7F7";
highlightTextColor = "#108bb3";

function highlightItem(item) {
	if(document.getElementById||(document.all && !(document.getElementById))) {
		//Grab the current properties
		defaultBackgroundColor = item.style.backgroundColor;
		defaultTextColor = item.style.color;

		//Apply the highlighted properties
		item.style.backgroundColor = highlightBackgroundColor;
		item.style.color = highlightTextColor;
	}
}

function unHighlightItem(item) {
	if(document.getElementById||(document.all && !(document.getElementById))) {
		//Assign the former properties back to the item
		item.style.backgroundColor = defaultBackgroundColor;
		item.style.color = defaultTextColor;
	}
}

// -->