Hmm, I'm just not getting that error in Opera or Firefox (also both latest versions). I did figure out what the error I am getting is from, you are not actually using the Chrome Menu. Here, where you go to initialize it:
Code:
<script type="text/javascript">
cssdropdown.startchrome("chromemenu")
</script>
You are giving the class name of the menu container, it's expecting the id. And it's just as well, because, since you are using the Dynamic Drive All Levels Navigational Menu, also activating the Chrome Menu on the same content would create a real mess.
Since I don't get the error you are (I do see it in your screen shot), I would recommend fixing a couple of things and seeing if they help. 1.) The character encoding declaration is too far down in the page's code, causing the browser to reload the page. Move all this:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="Generator" content="iWeb 3.0.1" />
<meta name="iWeb-Build" content="local-build-20090517" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta name="viewport" content="width=800" />
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="description" content= "Air Informatics data information delivery Mission" />
<meta name="keywords" content="aviation,digital,e-enabled,aircraft,operations,e-enabling,analysis,Boeing,Gulfstream,engines,airport,informatics,wireless,security,transfer,airlines,Bombardier,cost,terminal,management,savings,787" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
to right after the title tag.
And, since it's not being used anyway, get rid of chrome.js and the call to it (delete):
Code:
<script type="text/javascript" src="AboutUs_files/chrome.js">
/***********************************************
* Chrome CSS Drop Down Menu- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
<script type="text/javascript">
cssdropdown.startchrome("chromemenu")
</script>
I'm pretty sure those two things will not fix it, but they might. If the don't, let me know so I can check out the page again.
Bookmarks