function toggleMenu (objectID)
{
	var object = document.getElementById(objectID);
	object.style.display = 'block';
}