/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this scriptt and the associated (x)html
is available at http://www.stunicholls.com/menu/mini-tabbed-pages.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This script and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */


clickMenu = function(menu) {
	var getEls = document.getElementById(menu).getElementsByTagName("LI");
	var getAgn = getEls;
	var ab=0
	for (var i=0; i<getEls.length; i++) {
			getEls[i].onclick=function() {
				//alert(this.className);
				str=this.className;
				//alert(str);
				ab=str.search(/click/i);
				//alert(ab);
				if(ab<0){
				for (var x=0; x<getAgn.length; x++) {
				getAgn[x].className=getAgn[x].className.replace("click", "");
				}
				this.className+=" click";
				
				}
			}
			if(ab<0){ break; }
			}
		}
