var menuAI = 0;
var menuObj = null;

function setActiveMenuItem(item){
	this.Lo = document.getElementById('mLeft'+menuAI);
	this.Ro = document.getElementById('mRight'+menuAI);
	this.Li = document.getElementById('mLeft'+item);
	this.Ri = document.getElementById('mRight'+item);
	
	this.hideOld = function(){
		if (this.Lo!=null) this.Lo.style.backgroundImage= "";
		if (this.Ro!=null) this.Ro.style.backgroundImage= "";
		if (this.Ro!=null) this.Ro.style.color = "#B11116";
	}
	this.visNew = function(){
		if (this.Ri!=null) this.Ri.style.backgroundImage= "url('style/default/images/bg-menu-current-right.gif')";
		if (this.Li!=null) this.Li.style.backgroundImage= "url('style/default/images/bg-menu-current-left.gif')";
		if (this.Ri!=null) this.Ri.style.color = "#fff";
	}
	
	if (menuAI != item){
		hideOld();
		visNew();
		menuAI = item;
	}
}

function hideOther(item){
	for(i=1;i<=menuMax;i++) if (i!=item) this.menuObj[i].modTrans(50);
}
function showAll(){
	for(i=1;i<=menuMax;i++) this.menuObj[i].modTrans(100);
}

// Internet Explorer:
if (document.all)
  document.onselectstart =
    function () { return false; };

// Netscape 4:
if (document.layers) {
  document.captureEvents(Event.MOUSEDOWN);
  document.onmousedown =
    function (evt) { return false; };
}

// Netscape 6:
document.onmousedown = function () { return false; };

