
function showGroup(n, l) {
	// Set the selected DIV group and content variable
	
	var theGroup = document.getElementById('g'+n);
	var theContents = theGroup.getElementsByTagName('span')[0];
	
	
	// Check to see if the Link variable is set
	if (l) {
		var theLink = theGroup.getElementsByTagName('a')[l];
		theLink.style.color = 'ff0000';
		theGroup.getElementsByTagName('a')[0].style.color = '#ed0000';
	}
	
	
	// Check to see if the selected group is closed
	if (theGroup.style.backgroundImage == 'none') {
		// The group was closed
		closeGroups();
		theGroup.style.backgroundImage="url(/images/backgrounds/quickMenuLight.jpg)";
		theContents.style.display = 'block';
	} else {
		// The group was open
		closeGroups();
	}
}




function closeGroups() {
	
	for(i=1;i<9;i++)
		{
			document.getElementById('g'+i).style.backgroundImage = 'none';
			document.getElementById('g'+i).getElementsByTagName('span')[0].style.display = 'none';
		}
}// JavaScript Document