Firefox cursor is an insertion caret on Popup Menus
When I created a popup menu in Fireworks and Dreamweaver the popup menu in Firefox has an insertion caret. Here’s a way to fix this:
Add a line in the javascript MM_showMenu
document.body.style.cursor = ‘pointer’;
At the end of the function add another line:
document.body.style.cursor = ‘default’;

