You really haven't followed the installation process properly.
- The Chrome CSS Drop Down Menu styles (chromestyle.css) are not linked to the page. Without these, the markup will appear as an ordinary list.
- There should be only one external script tag (not counting your other scripts which appear not to conflict, thankfully) in the head with:
Code:
<script type="text/javascript" src="Home_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>
- The call to 'startchrome' must be an ordinary script tag with no src attribute, and should appear only once, after all the Chrome CSS Drop Down Menu content:
Code:
<div class="chromestyle" id="chromemenu">
<ul>
<li><a href="http://www.airinformatics.com">Home</a></li>
<li><a href="http://www.airinformatics.com/Mission.html">Mission</a></li>
<li><a href="#" rel="services1">Services</a></li>
<li><a href="http://www.airinformatics.com/Consulting.html">Consulting</a></li>
<li><a href="#" rel="about">About Us</a></li>
<li><a href="http://www.airinformatics.com/Downloads.html">Downloads</a></li>
<li><a href="http://www.airinformatics.com/Contact.html">Contact</a></li>
</ul>
</div>
<!--1st drop down menu -->
<div id="services1" class="dropmenudiv" style="width: 150px;">
<a href="http://www.airinformatics.com/Services.html">Services</a>
<a href="http://www.airinformatics.com/Wireless_Site_Survey.html">Wireless Site Survey</a>
<a href="http://www.airinformatics.com/Home.html">Security</a>
</div>
<!--2nd drop down menu -->
<div id="about" class="dropmenudiv" style="width: 150px;">
<a href="http://www.airinformatics.com/Team.html">Team</a>
<a href="http://www.airinformatics.com/Advisory_Board.html">Advisory Board</a>
<a href="http://www.airinformatics.com/Home.html">Privacy Policy</a>
</div>
<script type="text/javascript">
cssdropdown.startchrome("chromemenu")
</script>
Doing those things will at least get it working. However, in a local mock up of your page with these changes there is a problem - the positioning of the drop downs is off. This can be fixed by moving these parts, and only these parts:
Code:
<!--1st drop down menu -->
<div id="services1" class="dropmenudiv" style="width: 150px;">
<a href="http://www.airinformatics.com/Services.html">Services</a>
<a href="http://www.airinformatics.com/Wireless_Site_Survey.html">Wireless Site Survey</a>
<a href="http://www.airinformatics.com/Home.html">Security</a>
</div>
<!--2nd drop down menu -->
<div id="about" class="dropmenudiv" style="width: 150px;">
<a href="http://www.airinformatics.com/Team.html">Team</a>
<a href="http://www.airinformatics.com/Advisory_Board.html">Advisory Board</a>
<a href="http://www.airinformatics.com/Home.html">Privacy Policy</a>
</div>
<script type="text/javascript">
cssdropdown.startchrome("chromemenu")
</script>
to the last thing before the closing </body> tag.
Bookmarks