
var basicColor="#647E33";
var selectedColor="#425D23"


function changeMenuOption(id)
{
	for(i=1; i<6; i++)
	{
		if ( this.document.getElementById("menuOp"+i).getAttribute("selected") != "true" )
			this.document.getElementById("menuOp"+i).bgColor = basicColor;
	}
	
	this.document.getElementById(id).bgColor = selectedColor;
	
}

function selectMenuOption(id)
{

	for(i=1; i<6; i++)
	{
		this.document.getElementById("menuOp"+i).bgColor = basicColor;
		this.document.getElementById("menuOp"+i).setAttribute("selected","false");
	}
	this.document.getElementById(id).setAttribute("selected","true");
	this.document.getElementById(id).bgColor=selectedColor;

}

function clearMenuOption(id)
{
	if ( this.document.getElementById(id).getAttribute("selected") == "false" )
		this.document.getElementById(id).bgColor = basicColor;
}
