So after solving a bunch of other problems with this navigation. I have two last small problems.
The first, which is more important to fix, is that when the drop down falls, it is cut off by the containing div which is part of a grid. Instead it needs to "float" outside of this grid and over the slideshow below. Not sure how to do this. See the problem http://lookseewatch.com/independentinsurance/
I've purposely made the height 50px to show the problem, if there is no height, or the height is set to auto, the drop down doesn't even display.
Here's a code snippet
<div class="row">
<div class="grid_4">
<img src="<?php bloginfo('template_directory'); ?>/images/logo.png">
</div>
<div class="grid_8">
<?php wp_nav_menu( array('items_wrap' => '<ul class="%2$s">%3$s<div id="box"><div class="head"></div></div></ul>', 'container_class' => 'menu', 'menu_class' => 'nav', 'menu' => 'Header', 'walker' => new UL_Class_Walker )); ?>
</div>
</div>
The second issue is with the blue bar that follows where you hover. It's starting point is position absolutely
var dLeft = $('.current-menu-item a').offset().left+15;//setting default position of menu
var dWidth = $('.current-menu-item a').width();
var dTop = $('.current-menu-item a').offset().top;
so when the web page loads, and it works great, but when you resize the window, the "magic line" stays in the same place instead of moving with the navigation. When you hover over the other links, it goes to the correct location, but when it goes back to the original spot, it's completely off depending on how much the browser size has changed. You can see the problem at the link above and by pulling the corner of your browser in.
Let me know if I need to post any CSS for either.
Thanks!