UPDATE: Horizontal positioning has been resolved, but still having issues with menus not disappearing. Updated JSFiddle: http://jsfiddle.net/trevoray/CrPdK/7/I've come across two issues with my nav that I can't get past. Can anyone take a look and help me out?[*]Horizontal position. The page is centered, so I don't know exact position. I made it absolute and thought it would be absolute based upon it's parent element, but it's not working. I need the horizontal position to always be the same regardless of how wide a user's browser is. [*]Menus not "hiding" after onmouseout. Can't seem to figure out how to get the menus to go away consistantly. Here's the jsFiddle:http://jsfiddle.net/trevoray/CrPdK/2/\[code\] #nav-about { z-index:4000; position:absolute; left:186px; display:none;} #nav-meetings { z-index:4000; position:absolute; left:357px; display:none;} #nav-journal { z-index:4000; position:absolute; left:528px; display:none;} #nav-goodstuff { z-index:4000; position:absolute; left:699px; display:none;} #nav-members { z-index:4000; position:absolute; left:819px; display:none;}\[/code\]