Hi,
Right now I have the script so my tabs, when clicked will expand vertically and reveal hyperlinks. I would like for it to be on rollovers instead of on click. I can’t figure it out. It is probably simple for someone who is awesome at javascript!! Please help thanks
<script type="text/javascript">
function changeOpenMenu(id){
var all_uls = new Array();
all_uls[0]=‘ul_one’;
all_uls[1]=‘ul_two’;
all_uls[2]=‘ul_three’;
all_uls[3]=‘ul_four’;
for(i=0;i<all_uls.length;i++){
document.getElementById(all_uls*).style.display = ‘none’;
}
the_ul = document.getElementById(id);
the_ul.style.display = ‘block’;
clearButtons();
}
function clearButtons() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName(“a”);
for (var i=0; i<anchors.length; i++) {
var anchor = anchors*;
anchor.blur();
}
}
</script>