Add the following declaration to your style sheet. It appears you have a fixed width layout so centering it should be relatively easy.
#menuh {
text-align: center;
}
This should center text within the menuh div. Just make sure your menu items has the right padding and margins between them.
Alternatively since you have a fixed layout, you can apply a large left margin by using a css selector to select the ul element of your menu. something like so should work, add the declaration below to your style sheet.:
#menuh ul {
margin-left: 220px; /You can tweak the size of the margin until it's centered/
}
You may consider validating your code. You have so many html errors. Add an xhtml to firefox, it will help alert you to invalid code.