// JavaScript Document
var selectedId = "";

function lm_menuOn(x) {
	if(x.parentNode.id != selectedId) x.parentNode.style.backgroundColor="#FFFFAA";
}

function lm_menuOff(x) {
	if(x.parentNode.id != selectedId) x.parentNode.style.backgroundColor="";
}

function lm_menuSelected(id){
	selectedId = id;
	var element = document.getElementById(id);
	var bool = new Boolean(element);
	if( bool ) element.style.backgroundColor="#FFFFAA";
}

function lm_globalMenuOn(x){
	if(x.parentNode.id != selectedId) x.parentNode.style.backgroundImage="url(../images/lm_globalMenu_hit_bk.gif)";
}

function lm_globalMenuOff(x){
	if(x.parentNode.id != selectedId) x.parentNode.style.backgroundImage="";
}

function lm_subMenuOn(x){
	if(x.parentNode.id != selectedId) x.parentNode.style.backgroundImage="url(../images/lm_localMenu_hit_bk.gif)";
}

function lm_subMenuOff(x){
	if(x.parentNode.id != selectedId) x.parentNode.style.backgroundImage="";
}

function lm_subMenuSelected(id){
	selectedId = id;
	var element = document.getElementById(id);
	var bool = new Boolean(element);
	if( bool ) element.style.backgroundImage="url(../images/lm_localMenu_hit_bk.gif)";
}


