This is not a BIG job but you do need to understand CSS a bit. To give you an idea here is some code from ATO>Add HTML/CSS Inserts>CSS Inserts that relates to menu 1
HTML Code:
/* Space between items of page menu bar */
div#menu1 ul.rMenu li, div#menu1 ul.rMenu li {
margin-right: 5px;
}
To change this to apply to menu2 as well you would use the following.
HTML Code:
/* Space between items of page menu bar */
div#menu1 ul.rMenu li, div#menu1 ul.rMenu li, div#menu2 ul.rMenu li, div#menu1 ul.rMenu li {
margin-right: 5px;
}
As you can see I just added a comma and pasted a copy of what was there and changed div#menu1 to div#menu2. You just need to do the same type of thing to all the items that relate to menu1 and you may want to change the border radius on the menu2 so you don't have a square border radius on the bottom. You currently have several radius lines so if you just use logic you will see that to change
HTML Code:
-moz-border-radius-topleft: 5px;
-moz-border-radius-topleft: 5px;
So that each corner is rounded you could just have one line like the following.
HTML Code:
-moz-border-radius: 5px;
CSS is not too difficult. You just have to look at for a bit to figure out what it is doing.