 function menuItem(ob) {
				this.hideable=obj(ob);
				this.id=ob.substr(2);
				this.stop=0;
				this.timer=0;
				this.disabled=false;
				this.checkhide = function() {
					this.timer=0;
					this.stop=0;
					this.startTimer();
				}
				this.stopTimer = function(){ this.stop=1; }
				this.startTimer = function(){
					
					if (this.timer == 0 && this.stop != 1) {
						this.timer += 1;
						setTimeout("mi["+this.id+"].startTimer()", 10);
					}
					else {
						if (this.stop != 1) {
							if (this.hideable) {
								if (this.hideable.childNodes.length > 1) {
									this.hideable.childNodes[1].style.visibility = "visible";
								}
								this.hideable.style.borderLeft = "1px solid white";
							}
						}
					}
				}
				this.setActive = function() {
					if (!this.disabled) {
						this.hideable.childNodes[0].style.fontWeight = "bold";
						this.hideable.childNodes[0].style.color = "#cc3333";
						this.hideable.style.borderLeft = "1px solid #949599";
						if (this.hideable.childNodes.length > 1) {
							this.hideable.childNodes[1].style.visibility = "visible";
						}
						this.disabled = true;
					}
				}
				this.mover = function() {
					if (!this.disabled) {
						this.hideable.style.borderLeft = "1px solid #949599";
						if (this.hideable.childNodes.length > 1) {
							this.hideable.childNodes[1].style.visibility = "visible";
						}
						this.stopTimer();
					}
				}
				this.mout = function() { if (!this.disabled) {
					this.checkhide();
				} }
			}
			function obj(id) {
				return document.getElementById(id);
			}
			var mi = new Array();
