/*
-----------------------------------------------
Title: Smart Folding Menu Tree
Author: Author: Paul Schmit - Designkitchen, Inc.
Created:  19.october.2005
Modified: 06.november.2005 Paul Schmit - added collapse and expand option 
(before just expand) with other features
----------------------------------------------- */

var thisGroup=new Array();
var clickCount = 0;


function clickOpen(thisId) {
	var thisSubListId = 'subList'+thisId;
	var thisSubMenuId = 'subMenu'+thisId;
	var thisSubListDom = document.getElementById(thisSubListId);
	var thisSubMenuDom = document.getElementById(thisSubMenuId);
	
	if (thisSubListDom.className=='subLink' || thisSubListDom.className=='subLinkOn') {
		if (thisSubListDom.className=='subLink') {
			thisSubListDom.className='subLinkOn';
			thisSubMenuDom.style.display='block';		
			clickCount=0;			
		} else {
			thisSubListDom.className='subLink';
			thisSubMenuDom.style.display='none';
			clickCount=0;		
		}
	} else if (thisSubListDom.className=='topLink' || thisSubListDom.className=='topLinkOn') {
		if (thisSubListDom.className=='topLink') {
			thisSubListDom.className='topLinkOn';
			thisSubListDom.style.backgroundColor='#FFFFFF';
			thisSubMenuDom.style.display='block';
		} else {
			if (clickCount!=0) {
				thisSubListDom.className='topLink';
				thisSubListDom.style.backgroundColor='';
				thisSubMenuDom.style.display='none';			
			}
		} 
		++clickCount;
	}
}
