//SUB NAVIGATION MENU OBJECT////////////////////////////////////////////////////////////////////////////////////////
function NavigationMenu(ExpandID, RetractID, SubMenuID, PropertyOverride)
	{document.write('<div title="Click to Expand Navigation" class="ExpandIcon" id="'+ExpandID+'" onclick="ShowOnLoad(\'div\', \'ExpandIcon\'); HideOnLoad(\'div\', \'RetractIcon\'); HideOnLoad(\'div\', \'CollapsibleMenu\'); SetCollapsibleMenu(\''+ExpandID+'\', \''+SubMenuID+'\', PropertyOverride); ShowElement(\''+RetractID+'\');">&nbsp;</div>');
	document.write('<div title="Click to Contract Navigation" class="RetractIcon" id="'+RetractID+'" onclick="HideOnLoad(\'div\', \'CollapsibleMenu\'); ShowOnLoad(\'div\', \'ExpandIcon\'); HideOnLoad(\'div\', \'RetractIcon\'); ShowElement(\''+ExpandID+'\')">&nbsp;</div>');}

function SubNavigationMenu(ExpandID, RetractID, SubMenuID)
	{ShowElement(SubMenuID);
	ShowElement(RetractID);
	HideElement(ExpandID);}
