function MouseOver (text, category, threshold) 
		{if (category < threshold)
				{DropDown (text)}
		}

function Click (text, category, threshold) 
		{if (category < threshold)
				{return false}
		 else
		 		{return true}
		}

