I like alot but the problem is that when you click on the Menu it expands it, but when you click on the links that are expanded it will close the menu when you go to that link. Am I making sense? How can I have it stay open(expanded) even if it goes to another page?
Here is the code:
<script language=javascript type=text/javascript>
<!--
// preloads expand images and the dot
if(document.images)
{
expandC = new Image
expandC.src="images/arrow.gif"
expandO = new Image
expandO.src="images/arrow_down.gif"
}
function expand(expandWhat)
{
var exEle = expandWhat
var current = document.getElementById(exEle).style.display
if (current == "none")
{
document.getElementById(exEle).style.display="";
if (document.images)
document.getElementById(exEle + 'Img').src = expandO.src;
}
else
{
document.getElementById(exEle).style.display="none";
if (document.images)
document.getElementById(exEle + 'Img').src = expandC.src;
}
}
//-->
</SCRIPT>
Let me know if you need anything else. Thank you for ANY Help!