Regarding specifying a different drop down arrow image for each instance of the menu on your page, you can enable this feature inside the .js file by first replacing the line:
Code:
dropdownindicator: '<img src="down.gif" border="0" />',
with:
Code:
dropdownindicator: ['<img src="down.gif" border="0" />', '<img src="downalt.gif" border="0" />'],
The new line creates an array of down arrow images (2 in this case assuming you have 2 instances of the menu on your page).
Then, also find the below line inside the .js file, and add to it the new part in red:
Code:
menuitems[i].innerHTML=menuitems[i].innerHTML+" "+this.dropdownindicator[ids]
Regarding forcing the menu to always drop up, there is an easy way to do this, but the behavior would affect both instances of the menus on your page, which I doubt is what you want.
Bookmarks