/* JavaScript Document
	Programmed By:	Derrick Darling
	Date:			03/01/04
	Purpose:		Javascript functions for showing and hiding menu pull downs
*/
	function disappear2(object, show)
	{
		object.style.display = (show) ? "block" : "none"
	}
	
	function disappear(object, show)
	{	
		for (var x = 0; x < object.childNodes.length; x++)
		{
			var child = object.childNodes[x]
			if (child.nodeType == 1 && child.className == "drop_down")
			{
				child.style.display = (show) ? "block" : "none"
			}
		}
	}

	function disappearEmbed(object, show)
	{	
		for (var x = 0; x < object.childNodes.length; x++)
		{
			var child = object.childNodes[x];
			if (child.nodeType == 1 && child.className.substring(child.className.length - 4, child.className.length) == "-emb")
			{
				child.style.display = (show) ? "block" : "none"
			}
		}
	}