// JScript source code



function changeMe(id,state){
var id2
var id3
var id4

// Determine Menu Cell ID
id3 = "M" + id.charAt(1) + id.charAt(2)
id4 = "B" + id.charAt(1) + id.charAt(2)

	if (id.charAt(0) == "L"){
		id2 = "R" + id.charAt(1) + id.charAt(2)
	}
	if (id.charAt(0) == "R"){
		id2 = "L" + id.charAt(1) + id.charAt(2)
	}

// Swap Images Left and Right
document.getElementById(id).src = eval(id + state + ".src")
document.getElementById(id2).src = eval(id2 + state + ".src")

// Change Menu Cell Background color	
	if(state =="on"){
		document.getElementById(id3).style.backgroundColor ="#cdd199" 
		document.getElementById(id4).src = "images/menuon.gif" 
	}else{
		document.getElementById(id3).style.backgroundColor ="#B1B57D"
		document.getElementById(id4).src = "images/menuoff.gif"  
	}
 }
