var menu;

window.addEvent('load', function(){
   var menu_html = '<ul id="dropdown-menu" class="dropdown">\
   <li>\
		<strong><a  style="text-align:center" href="http://www.imapinvasives.org/index.html">Home</a> </strong>\
	</li>\
	<li >\
		<strong><a style="text-align:center" href="http://www.imapinvasives.org/map.html">Maps & Data</a></strong>\
	</li>\
	<li>\
		<strong><a style="text-align:center" href="http://www.imapinvasives.org/service.html">Service</a> </strong>\
	</li>\
	<li>\
		<strong><a style="text-align:center" href="">Resources</a> </strong>\
		<ul>\
			<li style="width:220px;">\
				<a href="http://www.imapinvasives.org/GIST/WIMS/index.html">TNC WIMS</a>\
			</li>\
			<li style="width:220px;">\
				<a href="http://www.imapinvasives.org/GIST/ESA/index.html">Element Stewardship Abstracts</a>\
			</li>\
			<li style="width:220px;">\
				<a href="http://www.imapinvasives.org/resources.html">Media Resources</a>\
			</li style="width:220px;">\
			<li style="width:220px;">\
				<a href="http://www.imapinvasives.org/links.html">Links</a>\
			</li>\
		</ul>\
	</li>\
	<li >\
		<strong><a style="text-align:center" href="">About</a> </strong>\
		<ul>\
			<li style="width:150px;">\
				<a href="http://www.imapinvasives.org/contact.html">Contact Us</a>\
			</li>\
			<li style="width:150px;">\
				<a  href="http://www.imapinvasives.org/partners.html">Partners</a>\
			</li>\
			<li style="width:150px;">\
				<a href="http://www.imapinvasives.org/executive_committe.html">Executive Committee</a>\
			</li>\
			<li style="width:150px;">\
				<a href="http://www.imapinvasives.org/futureplans.html">Future Plans</a>\
			</li>\
			<li style="width:150px;">\
				<a href="http://www.imapinvasives.org/presentations.html">Presentations</a>\
			</li>\
			<li style="width:150px;">\
				<a href="http://www.imapinvasives.org/terms.html">Term of Use</a>\
			</li>\
			<li style="width:150px;">\
				<a href="http://www.imapinvasives.org/functionality.html">Functionality</a>\
			</li>\
		</ul>\
		\
	</li>\
</ul>'

    //Add the HTML to the menu bar
    $('menu_bar').set('html', menu_html);

    menu = new UvumiDropdown("dropdown-menu",{ 
        closeDelay:200
    })

})
