Add gotoAndStop action for XML menus?

I’ve worked through the excellent XML menu tutorial at: http://www.kirupa.com/developer/actionscript/xml_dropdown_menu.htm
and found it to be very helpful.

Now I’m trying to add the capability to jump to a frame label.
Here is the section of the AS that defines the Actions:

[color=darkgreen]// This actions object handles methods for actions
// defined by the XML called when a menu item is pressed
Actions = Object();
Actions.gotoURL = function(urlVar){
getURL(urlVar, “_blank”);
};
[/color][color=red]//[/color]
[color=red]// here is the code i’ve added[/color]
[color=red]// add gotoAndStop action - jumpTo
//[/color]
[color=red]Actions.jumpTo = function(jump){
gotoAndStop(jump);
};[/color]
[color=darkgreen]Actions.message = function(msg){
message_txt.text = msg;
};
Actions.newMenu = function(menuxml){
menu_xml.load(menuxml);
};[/color]

Is there a better way to do this?
Please forgive my ignorance, not sure what I’m doing wrong, any help is appreciated.

Thanks,
Wakeaustin