function ShowHideMenuChildren(currentElement)
	{
		/*
		This function Shows or Hides the child elements of the element depicted by the variable "currentElement".
		"currentElement" is the element (link) that the user has clicked on to either show or hide the child elements 
		for that element.
		*/
		
		/* 
		Get the parent element of the link that was clicked and assign it to the variable "MenuHolder"
		This is the "<li>" element that holds the "currentElement" link
		*/
		MenuHolder = currentElement.parentNode;
		/* Check to see if the "<div>" element that holds the sub menu is set to "display:none" */
		if(MenuHolder.getElementsByTagName('div')[0].style.display=="none")
		{
			/* "<div>" element that holds the sub menu IS set to "display:none" */
			/* SHOW the sub menu */
			MenuHolder.getElementsByTagName('div')[0].style.display = "block";
			MenuHolder.getElementsByTagName('div')[0].style.visibility = "visible";
		}
		else
		{
			/* "<div>" element that holds the sub menu IS NOT set to "display:none" */
			/* HIDE the sub menu */
			MenuHolder.getElementsByTagName('div')[0].style.display = "none";
			MenuHolder.getElementsByTagName('div')[0].style.visibility = "hidden";
		}
		/* Return false to stay Client Side */
		return false;
	}// End of ShowHideMenuChildren