<!-- Begin HORIZONTAL CSS DROP MENU VER 1.50 2008

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY


var showtop		= "no"		//  SHOW TOP MENU IMAGE
var showimage		= "no"		//  SHOW BOTTOM MENU IMAGE


document.write('<div id="menulocation" class="printhide">');
   if (showtop == "yes") {
document.write('<img src="picts/menu-top.jpg" width="150" height="125" class="menutop"></a><br>');
}
document.write('<table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td class="topmargin">');
document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA




document.write('  <li class="menuT"><a href="index.html">Home</a></li>');




// MENU SEPARATOR 1
document.write('<li class="menuseparator"></li>');






document.write('  <li class="menuT"><a href="announcement.html" class="parentM">Conference Overview</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="languages.html">Conference Languages</a></li>');
document.write('      <li><a href="announcement.html">Conference Announcement</a></li>');
document.write('      <li><a href="themes.html">Conference Theme and Sub-Themes</a></li>');
document.write('      <li><a href="concept.html">Concept Note</a></li>');
document.write('      <li><a href="venue.html">Conference Venue</a></li>');
document.write('      <li><a href="dates.html">Key Dates</a></li>');
document.write('      <li><a href="history.html">History of African International ECD Conferences</a></li>'); 
document.write('      <li><a href="faq.html">Frequently Asked Questions</a></li>');
document.write('    </ul>');
document.write('  </li>');


document.write('  <li class="menuT"><a href="sponsors.html" class="parentM">Sponsors & Organizers</a>');
document.write('    <ul id="sub-nav">');

document.write('      <li><a href="sponsors.html">Sponsors</a></li>');
document.write('      <li><a href="adeaecd.html">Introduction to the ADEA ECD Working Group</a></li>');
document.write('      <li><a href="steeringcommittee.html">ADEA WG ECD Steering Committee</a></li>');
document.write('      <li><a href="coorcommittees.html">Conference Coordinating Committees</a></li>');
document.write('      <li><a href="progcommittee.html">Conference Program Committee</a></li>');
document.write('      <li><a href="focalpoints.html">Country ECD Focal Points</a></li>');
document.write('    </ul>');
document.write('  </li>');




// MENU SEPARATOR 2
document.write('<li class="menuseparator"></li>');


document.write('  <li class="menuT"><a href="awards.html" class="parentM">Awards</a>');
document.write('    <ul id="sub-nav">');

document.write('      <li><a href="awards.html">Awards & Certificates</a></li>');
document.write('      <li><a href="awardexcellence.html">Award for ECD Excellence </a></li>');
document.write('      <li><a href="awardposters.html">Awards and Certificates for Posters  </a></li>');
document.write('      <li><a href="awardguide.html">Awards and Certificates for Guide Selection  </a></li>');
document.write('      <li><a href="certificateparticipation.html">Certificates of Participation </a></li>');
document.write('    </ul>');
document.write('  </li>');



document.write('  <li class="menuT"><a href="dm.html" class="parentM">Development Marketplace: Poster Presentations</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="dm.html">General description of the Development Marketplace, schedule for setting up, posters, and voting process </a></li>');
document.write('      <li><a href="posterlist.html">List of Posters  </a></li>');
document.write('    </ul>');
document.write('  </li>');



// MENU SEPARATOR 3
document.write('<li class="menuseparator"></li>');



document.write('  <li class="menuT"><a href="media.html" class="parentM">Recent News</a>');



document.write('  <li class="menuT"><a href="contact.htm">Contact</a></li>');










// END LINKS //



document.write('</ul>');
document.write('</td></tr><tr><td align="center">');




// START MENU IMAGE


   if (showimage == "yes") {
document.write('<br><br><a href="index.html"><img src="picts/menu-image.jpg" width="150" height="75" border="0" class="borders-menuimage"></a><br><br><br>');
}






document.write('</td></tr></table>');
document.write('</div>');




//  End -->





// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE









function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;