Docom, I'd suggest you look at some non-javascript ways to achieve a drop-down menu. A simple set of <ul> elements inside <li> elements can give you some good effects. Works in IE 7+ (IIRC), Firefox, Safari, Opera.
If you read A List Apart's Suckerfish Dropdown Menus you'll see some good examples of how to do it. The basics of it are with CSS you use the :hover psuedo class and change the child ul's visibility. E.g.:
ul#nav li > ul
{
display: none;
}
ul#nav li:hover > ul
{
display: block;
}
Now, there are some nuances with positioning, but that's the basic idea. The javascript for IE 6 and below. There is; however, an easier way. Using a custom behavior you can implement :hover for IE 6/7/8 just like any other browser. Whatever:hover
Hope that helps.
Moving to Clientside forums.