Not sure if this has been covered anywhere but thought I'd share.
To add a scroll to vertical drop down with the suckerfish plugin just update the sf-menu ul css like this...
.sf-menu ul {
position: absolute;
top: -999em;
width: 10em; /* left offset of submenus need to match (see below) */
height: 200px;
overflow-x: hidden;
overflow-y: auto;
}
Hope some one finds this useful.
Dave