var submenu=new Array()

//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.
 
submenu[0]='<b><!--<a class="submenu" href="javascript://"><s>What\'s New</s> </a> | //--><a class="submenu" href="welcome_e.html">Welcome</a> | <a class="submenu" href="cohosts_e.html">Co-Hosts</a> | <!--<a class="submenu" href="exhibits_e.html">Exhibits</a> | --><a class="submenu" href="contact_us_e.html">Contact Us</a>'

submenu[1]='<b><a class="submenu" href="tnt_e.html">Theme & Tracks</a> | <a class="submenu" href="DUC08_progAtGlance_EN.pdf" target="blank">Program at a Glance</a> | <a class="submenu" href="speakers_e.html">Featured Speakers</a> | <a class="submenu" href="workshops_e.html">Workshops</a> | <a class="submenu" href="panel_e.html">Panel Session</a> | <a class="submenu" href="Concurrent_Sessions.pdf">Concurrent Sessions</a> | <a class="submenu" href="Posters.pdf">Posters</a></b>'

submenu[2]='<b><a class="submenu" href="abstracts_e.html">Guidelines</a> | <a class="submenu" href="closedabs_e.html">Online Submission Form</a>'

submenu[3]='<b><a class="submenu" href="register_e.html">Guidelines</a> | <a class="submenu" href="javascript://"><s> Online Registration</s></a>  | <a class="submenu" href="javascript://"><s> Offline Registration</s></a>'

submenu[4]='<b><a class="submenu" href="locations_e.html">Accomodations & Reservations</a>'

submenu[5]=''

submenu[6]=''

submenu[7]='<b><a class="submenu" href="Sponsorship_Prospectus_EN.pdf" target="_blank">Prospectus</a> | <a class="submenu" href="sponsors_e.html">Sponsors</a> | <a class="submenu" href="Sponsorship_Application_Form_EN.pdf" target="_blank">Sponsorship Application Form</a></b>'

//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=2000

/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
	clear_delayhide()
	thecontent=(which==-1)? "" : submenu[which]
	if (document.getElementById||document.all)
		menuobj.innerHTML=thecontent
	else if (document.layers){
		menuobj.document.write(thecontent)
		menuobj.document.close()
	}
}

function resetit(e){
	if (document.all&&!menuobj.contains(e.toElement))
	delayhide=setTimeout("showit(-1)",delay_hide)
	else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
	delayhide=setTimeout("showit(-1)",delay_hide)
}

function clear_delayhide(){
	if (window.delayhide)
	clearTimeout(delayhide)
}

function contains_ns6(a, b) {
	while (b.parentNode)
	if ((b = b.parentNode) == a)
	return true;
	return false;
}

