Great! I'm glad that this is helping you out so much.
I think that the site title looks just fine as is.
I would change the color of the site description, though. You can hardly see it as is.
You'll want to look for the #header h2 line in your style.css file. I would change the hex color from #7A7A7A to something a little darker like #333333.
It would look like this:
#header h2 {
color: #333333;
font-family: Arial,Helvetica,Sans-serif;
font-size: 14px;
line-height: 14px;
}
To change the color of the yellow, you want to look for the #nav li a:hover, #nav li a:focus, #nav a.mainMenuParentBtnFocused line in your MenuMatic.css file. If you change the hex color there to something else, it might look a little more in line with you site.
This is what it would look like if you wanted it to be a nice gray:
#nav li a:hover, #nav li a:focus, #nav a.mainMenuParentBtnFocused {
background: none repeat scroll 0 0 #666666;
color: #000000;
}
I think the yellow is pretty cool, though.