	sec="home";
	show="";
	li="";
sections = new Array();

	function tE(e){e = e.style ? e.style : e ; e.display=='block'?e.display='none':e.display='block';}
	function vE(e){if (show) tE(gE(show));if (typeof e=='string') e = gE("_"+e) ;  show = e.id.substr(1); tE(gE(show)); if (li) li.style.backgroundColor = ''; li = e ; e.style.backgroundColor = 'FFD699';}
	function sB(e){ if (e!=li)  e.style.backgroundColor = 'ddd'; }
	function uB(e){ if (e!=li)  e.style.backgroundColor = ''; }

function setupNav() { 
	var ul = d.getElementById("left");
	var x = ul.getElementsByTagName('LI');
	for (var i=0;i<x.length;i++){
			x[i].onclick = function () { vE(this); }
			x[i].onmouseover = function () { sB(this); }
			x[i].onmouseout = function () { uB(this); }
			sections[i]=x[i].id.substr(1);
			if (x[i].id == "_"+ sec){  li=x[i]; vE(x[i]); }
			else { e = gE(x[i].id.substr(1)); e = e.style ? e.style : e ; e.display='none';}
	}
	sURL = window.location.href.toString().toLowerCase();
	params="";
	if (sURL.indexOf("?") > 0){ 
		params = sURL.split("?")[1];
		//alert(params);
		if (params.length > 1)
			for (var i=0;i<sections.length;i++)
				if(sections[i].indexOf(params)>-1){
					//alert(sections[i]);
					vE(sections[i]);
				}
	}
}
function doScroll(div) {
		var s = div.scrollTop;
		div.childNodes[1].focus();
		div.scrollTop = s;
		div.onmouseover = null;
}

function fixDivScroll(id){
	if (MOZ){
		el = gE(id);
		a = cE("a");
		a.onblur = function () { el.onmouseover = function () { doScroll(el); }  }
		iE(el,a);
		iT(el,"\n");
		el.onmouseover = function () { doScroll(this); } 
	}
}

