
//*******************************************************************************************************************************************
//	Name / eMail ID		: Himagirish
//	Type			:  	Javascript 
//	Purpose			: Function hides all the layers ( Submenus ).
//	Author			: 	Himagirish 
//	Created Date		:  	Sept 23, 2002
//	Last Modifed Date		:   25 Sept, 2002
//	Status			:		Completed
//	External Dependencies	:	- Nil  - 
//	Input Parameters		:		- Nil -
//	Output Parameters		: 	 - Nil -
//	Description		: 	This page contains javascript function that hides all the sub menu layer

//********************************************************************************************************************************************

// This function hides all the layers ( Submenus ) on the page

function allOff()
{
	
MM_showHideLayers('drop1','','hide');
MM_showHideLayers('drop2','','hide');
MM_showHideLayers('drop3','','hide');
MM_showHideLayers('drop4','','hide');
MM_showHideLayers('drop5','','hide');
MM_showHideLayers('drop6','','hide');
MM_showHideLayers('drop7','','hide');
MM_showHideLayers('drop8','','hide')
}

// End of the function

//********************************************************************************************************************************************
