You could try the following concept. If I took more time to optimize I am sure the code could be condensed but this works.
==========================================
<script language="JavaScript" type="text/javascript">
<!--
function cc1(){
document.getElementById("menu1").style.backgroundI mage="url('active.jpg')";
document.getElementById("menu2").style.backgroundI mage="url('inactive.jpg')";
document.getElementById("txt1").style.color= '#FFFFFF';
document.getElementById("txt2").style.color= '#FF0000';
}
function cc2(){
document.getElementById("menu1").style.backgroundI mage="url('inactive.jpg')";
document.getElementById("menu2").style.backgroundI mage="url('active.jpg')";
document.getElementById("txt1").style.color= '#FF0000';
document.getElementById("txt2").style.color= '#FFFFFF';
}
//-->
</script>
<table width="200" height="100" cellpadding="0" cellspacing="0" border="1">
<tr>
<td id="menu1">
<div align="center"><font face="arial" size=2"><B><a href="#" onclick="cc1()" id="txt1">MENU 1</a></B></font></div>
</td>
<td id="menu2">
<div align="center"><font face="arial" size=2"><B><a href="#" onclick="cc2()" id="txt2">MENU 2</a></B></font></div>
</td>
</tr>
</table>
==========================================
Demo located at
http://www.imaginemn.com/temp/menu.htm
imaginemn