// This script hides the contents of all list items with a class of folder
function show(showID,linky) {
	var li = linky.parentNode;
	var thingToShow = document.getElementById(showID);
	li.className = "folder open";
	thingToShow.className = "folderlist";
	//thingToShow.style.display = 'block';
	linky.onclick = function(){ return hide(showID, this); }
	//linky.onBlur = function(){ this.blur(); }
	//return false;
}
function hide(hideID,linky) {
	var li = linky.parentNode;
	var thingToHide = document.getElementById(hideID);
	li.className = "folder closed";
	//thingToHide.style.display = 'none';
	thingToHide.className = "folderlist hidden";
	linky.onclick = function(){ return show(hideID, this); }
	//linky.onBlur = function(){ this.blur(); }
	//return false;
}

//document.write("<style type=\"text/css\" media=\"screen\"> .hidden{ display: none; } </style>");
