Hmm this is a rather strange one. The script appears to be running properly in Chrome- the sub menus simply don't show up for some reason. Two possibilities:
1) There may be something in the newer version of jQuery you're using that's the issue. What if you changed the reference:
Code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
to:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
?
2) If that didn't work, it might have something to do with your page's CSS and layout; I see the menu is nested deep inside floated containers. What if you moved the menu (topmost element for it is DIV class="ddsmoothmenu") outside so it's a direct child of the BODY element? Better yet, create a new blank page with just the menu on it and see if it shows up in Chrome. If so, then slowly add back the rest of your page's elements until the culprit is located.
Bookmarks