URGENT: Centering Text On Custom RIght Click Menu

I have this code:

my_cm = new ContextMenu(menuHandler);
my_cm.customItems.push(new ContextMenuItem(“The Broken Online Offical Website”, itemHandler));
my_cm.customItems.push(new ContextMenuItem(“© Sebhughes 2005”, itemHandler));
my_cm.hideBuiltInItems();

function itemHandler(obj, item)
{

}
_root.menu = my_cm;

And i weant my right to be centered on the Right click on menu, currently it is aligned to the left :slight_smile: