



function menu_on(item, link)

{ 

	if (item.style != null)

	{

		item.style.background = '#DA241E'; 

		document.getElementById('menu'+link).style.color = '#FFFFFF';

	}

}

function menu_off(item, link)

{ 

	if (item.style != null)

	{

		item.style.background = '#FFFFFF'; 

		document.getElementById('menu'+link).style.color = '#291866';

	}

}