/* ------[ instructions ]---------------------------------------- */
/*   
Tab Mix Plus gives you 5 menuseparators (3 without TMP) in the tab context 
menu in Firefox 1.5+ (4 and 2 respectively in Firefox 1.0.7)

Thanks to onemen for this code
     
This is the code for entering the menu separators

         menuseparator[id="SeparatorID"] 

replace "SeparatorID" with one in the list ( in this order )

        "original-separator-0"
        "tm-separator"
        "original-separator-1"
        "tm-separator-2"
        "original-separator-2" 

Start with the top separator code and work your way down the list
until you have entered all the separators you want. 

The code below is what I use.
Use this as an example to go by.
You will have to arrange it to suit your own preference.
*/
/* ------[ code ]------------------------------------------------ */

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

menuitem[label="Close Tab"] { -moz-box-ordinal-group: 1; }
menuitem[label="Close Other Tabs"] { -moz-box-ordinal-group: 2; }

menuseparator[id="original-separator-0"] { -moz-box-ordinal-group: 3; }

menuitem[label="Reload Tab"] { -moz-box-ordinal-group: 4; }
menuitem[label="Reload All Tabs"] { -moz-box-ordinal-group: 5; }

menuseparator[id="tm-separator"] { -moz-box-ordinal-group: 6; }

menuitem[label="New Tab"] { -moz-box-ordinal-group: 7; }
menuitem[label="Duplicate Tab"] { -moz-box-ordinal-group: 8; }

/* ------[ end of code ]----------------------------------------- */