function highlight(li)
{	
	document.getElementById("menuLi"+li.toString()).style.color="#000000";
	document.getElementById("menuLi"+li.toString()).style.backgroundColor="#E8E8E8";
	document.getElementById("menuDetailsLi"+li.toString()).style.color="#000000";
	document.getElementById("menuDetailsLi"+li.toString()).style.backgroundColor="#f2f2f2";
}
function reset(li)
{
	document.getElementById("menuLi"+li.toString()).style.color="#666666";
	document.getElementById("menuLi"+li.toString()).style.backgroundColor="#F2F2F2";
	document.getElementById("menuDetailsLi"+li.toString()).style.color="#666666";
	document.getElementById("menuDetailsLi"+li.toString()).style.backgroundColor="#ffffff";
}
