﻿<!-- Begin HORIZONTAL CSS DROP MENU VER 1.50 2009

// 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="rates.htm" class="parentM">Registration Rates</a>');




document.write('  <li class="menuT"><a href="http://www.regonline.com/udmc09" class="parentM">Register Online</a>');





document.write('  <li class="menuT"><a href="advertisers.htm" class="parentM">Advertisers</a>'); 






document.write('  <li class="menuT"><a href="exhibitors.htm" class="parentM">Exhibitors</a>');






document.write('  <li class="menuT"><a href="sponsors.htm" class="parentM">Sponsors</a>');






document.write('  <li class="menuT"><a href="programbook.htm" class="parentM">Program Book</a>');








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






document.write('  <li class="menuT"><a href="espanol.htm" class="parentM">Espa&#241;ol</a>');






document.write('  <li class="menuT"><a href="vietnamese.htm" class="parentM">Vietnamese</a>');





document.write('  <li class="menuT"><a href="agenda.htm" class="parentM">Agenda</a>');







document.write('  <li class="menuT"><a href="speakerindex.htm" class="parentM">Speakers</a>');





document.write('  <li class="menuT"><a href="keynotes.htm" class="parentM">Keynote and Workshop Descriptions</a>');







document.write('  <li class="menuT"><a href="concert.htm" class="parentM">John Michael Talbot Concert</a>');




document.write('  <li class="menuT"><a href="music-performances.htm" class="parentM">Performance</a>');









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




document.write('  <li class="menuT"><a href="hotel.htm" class="parentM">Hotel & Area info</a>');



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





// 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 -->




// COPYRIGHT 2009 ? Allwebco Design Corporation
// 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;