function showClickList(theItem) {
	
    clickListNodes = getObjRef('clickList').getElementsByTagName('li');
    clickListItem = getObjRef('clickList').firstChild;
	
    
	
	if (theItem != -1) {
		while (clickListItem) {
			if (clickListItem != theItem.parentNode.parentNode) {
				clickListItem.className=('closed');
			}
			clickListItem = clickListItem.nextSibling;
		}
		if (theItem.parentNode.parentNode.className == 'open') {
			theItem.parentNode.parentNode.className = 'closed';
		} else {
			theItem.parentNode.parentNode.className='open';
		};
	} else {
		allLinks = getObjRef('clickList').getElementsByTagName('a');
		for (n = 0; n < allLinks.length; n++) {
			theLink = allLinks[n];
			//alert(theLink.parentNode.tagName);
			if (theLink.parentNode.tagName == 'H2') {
				theLink.onclick=function(){showClickList(this); return linkEnabled();};
				theLink.onkeypress=function(){if (theLink.keyCode == 13) {showClickList(this); return linkEnabled();}};
			}
		}
		while (clickListItem) {
			clickListItem.className=('closed');
			clickListItem = clickListItem.nextSibling;
			n+=1;
		}
	}
}


function linkEnabled() {
	return false;
}

