ul = document.getElementById("Products");

li = ul.getElementsByTagName("LI")
anchors = ul.getElementsByTagName("A")

function HighlightImage(object){
	href = object.href
	for (ind = 0; ind < anchors.length; ++ ind){
		if(anchors[ind].href.indexOf(href) > -1){
			li[ind].className = "selected"
			break
		}
	}
}
function Lowlight(object){
	href = object.href
	for (ind = 0; ind < anchors.length; ++ ind){
		if(anchors[ind].href.indexOf(href) > -1){
			li[ind].className = "";
			break
		}
	}
}