function swapMenu(menuid,s) {
	if(s=='on') {
		document.getElementById(menuid).style.backgroundImage = "url('../images/mls_menu_on.gif')";
		document.getElementById(menuid).style.color = '#962D23';
	} else {
		document.getElementById(menuid).style.backgroundImage = "url('../images/mls_menu_off.gif')";
		document.getElementById(menuid).style.color = '#ffffff';
	}
}
