function toggleClamShellMenu(objectID) {
	if (isAll || isID) {
		domStyle = findDOM(objectID,1);
		
		if (domStyle.display =='block' || domStyle.display =='inline') {
		  domStyle.display='none';
		} else {
		  domStyle.display='block';
		}
	} else {
		destination = objectID + '.html';
		self.location = destination;
	}
	return;
}

function hideClamShellMenu(objectID) {
	if (isAll || isID) {
		domStyle = findDOM(objectID,1);
		
		// hide the object
		domStyle.display='none';
		
	} else {
		destination = objectID + '.html';
		self.location = destination;
	}
	return;
}

function showClamShellMenu(objectID) {
	if (isAll || isID) {
		domStyle = findDOM(objectID,1);
		
		// show the object
		domStyle.display='block';
		
	} else {
		destination = objectID + '.html';
		self.location = destination;
	}
	return;
}