you could use the bar text's id to work with it. The id is:
For the first demo menu, that would be:
To elaborate, one could do something like so:
Code:
<script type="text/javascript">
function juice_bar(){
var bar = document.getElementById('menu1bar');
bar.onmouseover = function(){bar.style.backgroundColor = 'red';};
bar.onmouseout = function(){bar.style.backgroundColor = '';};
}
if(typeof window.addEventListener!='undefined')
window.addEventListener('load', juice_bar, false);
else if(typeof window.attachEvent!='undefined')
window.attachEvent('onload', juice_bar);
</script>
Bookmarks