


function toggleBGcolor_on(item)
{
	document.getElementById(item).style.backgroundColor = "#555";

}

function toggleBGcolor_off(item)
{
	document.getElementById(item).style.backgroundColor = "#777";
}

// End -->



