//This function controls the expand and collapes of the left column menu
window.onload=expand; 

function expand(id) 
{
	var d = document.getElementById(id);

	for (var i = 1; i<=7; i++) // 7 is the number of expandible 'smenu'(s)
	
	{
		if (document.getElementById('smenu'+i)) 
		{
			document.getElementById('smenu'+i).style.display='none'; // 'none' style defined in line 66 of /style/format.css
		}
	}
		if (id) 
		{
			d.style.display='block'; // 'block' style defined in line 65 of /style/format.css
		}


<!-- ME TRYING -->

if (document.getElementById('open')) 
		{
			document.getElementById('open').style.display='block'; // 'none' style defined in line 66 of /style/format.css
		}
		
}		
