// If you use this script, you must leave my copyright and authorship info intact.

// _______________________________________________________________

// Title : Drop-down menu v1
// Author : Mark Everett
// Website : www.markeverett.com
// Copyright © Mark Everett 2004 all rights reserved
// Acknowledgements : This script was adapted from a similar script used on DevGuru - http://www.devguru.com
// _______________________________________________________________


function dropDown(theElement)  {
	submenu = theElement.nextSibling.nextSibling.style;
	if (submenu.display == "none") {
		submenu.display = "";
		theElement.title = "";
	} else {
		submenu.display = "none";
		theElement.title = "[+]";
	}
}
