Action script menu question

I am simply trying to change the menu names in the action script below but if change any of the names the menu stops working properly? For example, If i rename “Partners” to lets say Corporate Partners the menu system will point all menu names to the same page withing the flash movie instead of linking to the 6 separate pages/movie clips within the mane flash movie? Any idea why???

voci_menu = [“Main”, “Company”, “Services”, “Solutions”, “Partners”, “Contacts”,“Main”, “Company”, “Services”, “Solutions”, “Partners”, “Contacts”];
fl = 1000;
n_max = 80;
for (n = 0; n < n_max; n++)
{
if (n > n_max - (voci_menu.length + 1))
{
id_item = n_max - n - 1;
z_item = fl * 2 / (voci_menu.length + 1) * id_item;
menuitem.duplicateMovieClip(“item” + n, n + 1000000, {id: n, id_max: n_max, id_item: id_item, txt: voci_menu[id_item], z: z_item});
continue;
} // end if
petalo.duplicateMovieClip(“petalo” + n, n, {id: n, id_max: n_max});
} // end of for
menuitem.removeMovieClip();
menuitem._visible = false;
petalo.removeMovieClip();
stop ();