At the home page, the menu works perfectly BUT the one item with a dropdown, "Fireplaces," isn't behaving correctly. Parent page text isn't remaining red, all links are white. The dropdown works correctly AFTER you click on Fireplace. But when any other page is active, it doesn't work correctly.
Also, while all page menu links turn red when those pages are active, the Project page (blog page) stays white when that page is active.
My code is probably a complete mess after so many hours messing around with it. I'm having trouble understanding how to code the CSS in this menu/submenu hierarchy.

HTML Code:
/* Create spacing between menu buttons */ ul.rMenu li { margin-right: 10px; margin-left: 2px; } /*Remove Default Navigation Background Color */ ul.rMenu li { background:none !important; } div#menu1 ul.rMenu li a:link, div#menu1 ul.rMenu li a:hover, div#menu1 ul.rMenu li a:visited, div#menu1 ul.rMenu li a:active { background:transparent !important; } /*Page Menu Background Image */ div#menu1 ul.rMenu { background: #123456 url(http://palazzocast.com/wp-content/themes/atahualpa342/images/header_02.png) no-repeat scroll top left; padding-top: 3px; padding-bottom: 3px; } /*Dropdown Background Color */ div#menu1 ul#rmenu2 li ul a { background:#515348 !important; } div#menu1 ul#rmenu2 li ul a:hover { color: #ffffff !important; } div#menu1 ul#rmenu2 li ul a:active { color: #ff0000 !important; } /*Remove down arrow from dropdown top level */ div#menu1 ul.rMenu-hor li.rMenu-expand a { background-image: none; } }