Use this as a start:
Code:
<li><a id="how_you_can_help" >How You Can Help</a>
<ul >
<li id="how_you_can_help1"><a>Donate</a></li>
<li id="how_you_can_help2"><a>Volunteer</a></li>
<li id="how_you_can_help3" ><a>Connect</a></li>
</ul>
</li>
<!-- Immediatey before the closing body tag -->
<script>
document.getElementById("how_you_can_help").addEventListener("mouseover", function(){document.getElementById("how_you_can_help").style.background="#f68e1e"});
document.getElementById("how_you_can_help").addEventListener("mouseout", function(){document.getElementById("how_you_can_help").style.background="#003d7d"});
document.getElementById("how_you_can_help1").addEventListener("mouseover", function(){document.getElementById("how_you_can_help").style.background="#f68e1e"});
document.getElementById("how_you_can_help1").addEventListener("mouseout", function(){document.getElementById("how_you_can_help").style.background="#003d7d"});
document.getElementById("how_you_can_help2").addEventListener("mouseover", function(){document.getElementById("how_you_can_help").style.background="#f68e1e"});
document.getElementById("how_you_can_help2").addEventListener("mouseout", function(){document.getElementById("how_you_can_help").style.background="#003d7d"});
document.getElementById("how_you_can_help3").addEventListener("mouseover", function(){document.getElementById("how_you_can_help").style.background="#f68e1e"});
document.getElementById("how_you_can_help3").addEventListener("mouseout", function(){document.getElementById("how_you_can_help").style.background="#003d7d"});
</script>
then try to simplify the code.
Bookmarks