//===========================================================================
// dropdown menu

//Contents for menu 1
var menu1 = [
'<a href="../ems_certification.stm">Certification Information</a>',
'<a href="../ems_fire_srvcs.stm">Chartered Institution</a>',
'<a href="../ems_committees.stm">Committee Information</a>',
'<a href="../contacts.stm#Fire">Contacts</a>',
'<a href="../ems_enforcement.stm">Disciplinary Actions</a>',
'<a href="../ems_forms.stm">Forms</a>',
'<a href="../ems_fire_srvcs.stm">Instructors</a>',
'<a href="../ems_fire_srvcs.stm">Recertification Requirements</a>',
'<a href="../ems_testing.stm">Testing</a>',
'<a href="https://www.dps.state.oh.us/ems/training.asp">Training Facilities</a>'
]
							
//Contents for menu 2
var menu2 = [
'<a href="../ems_audits.stm">Audit of EMS Personnel</a>',
'<a href="http://www.publicsafety.ohio.gov/links/ems_cert_to_teach09.pdf">EMS Certificate to Teach</a>',
'<a href="../contacts.stm#Education">Contact EMS Education Staff</a>',
'<a href="../ems_certification.stm">EMS Certification</a>',
'<a href="../ems_education.stm">EMS Education</a>',
'<a href="../ems_forms.stm">EMS Forms</a>',
'<a href="../ems_reports_publications.stm">EMS Reports and Publications</a>',
'<a href="../ems_testing.stm">Information on EMS Testing</a>',
'<a href="http://www.publicsafety.ohio.gov/links/ems_scope_practice0608.pdf">Ohio EMS Scope of Practice</a>',
'<a href="http://www.publicsafety.ohio.gov/links/ems_ce_requirements.pdf">Continuing Education Requirements</a>',
'<a href="https://www.dps.state.oh.us/ems/training.asp">Training Facilities</a>',
]

//Contents for menu 3
var menu3 = [
'<a href="../ems_board_members.stm">Board Member Information</a>',
'<a href="../ems_committees.stm">Meeting Information</a>',
'<a href="../ems_committees.stm">Committees</a>',
'<a href="../ems_enforcement.stm">EMS Disciplinary Actions</a>',
'<a href="../ems_board.stm">Position Papers</a>'
]

//Contents for menu 4
var menu4 = [
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>'
]

//Contents for menu 5
var menu5 = [
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>',
'<a href=""></a>'
]

//Contents for menu 6
var menu6 = [
'<a href="http://publicsafety.ohio.gov/adm_index.stm">Administration</a>',
'<a href="http://bmv.ohio.gov/index.stm">Bureau of Motor Vehicles</a>',
'<a href="http://ema.ohio.gov/index.aspx">Emergency Management Agency</a>',
'<a href="http://ems.ohio.gov/index.stm">Emergency Medical Services</a>',
'<a href="http://ocjs.ohio.gov">Office of Criminal Justice Services</a>',
'<a href="http://homelandsecurity.ohio.gov/index.stm">Ohio Homeland Security</a>',
'<a href="http://investigativeunit.ohio.gov/index.stm">Ohio Investigative Unit</a>',
'<a href="http://statepatrol.ohio.gov/index.stm">Ohio State Highway Patrol</a>',
'<a href="http://ohiohighwaysafetyoffice.ohio.gov/index.stm">Ohio Traffic Safety Office</a>',
'<a href="http://publicsafety.ohio.gov/">Ohio Department of Public Safety</a>'
]

var menuwidth = '300px' //default menu width
var menubgcolor = '#ebf6ff'  //menu bgcolor
var disappeardelay = 250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick = "yes" //hide menu when user clicks within menu?

/////No further editing needed

var ie4 = document.all
var ns6 = document.getElementById&&!document.all

if (ie4||ns6)
	document.write('<div id="dropmenudiv" class="noprint" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>');

function getposOffset(what, offsettype)
{
	var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
	var parentEl=what.offsetParent;
	while (parentEl!=null){
		totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
		parentEl=parentEl.offsetParent;
	}
	return totaloffset;
}

function showhide(obj, e, visible, hidden, menuwidth){
	if (ie4||ns6)
		dropmenuobj.style.left=dropmenuobj.style.top="-500px"
	if (menuwidth!=""){
		dropmenuobj.widthobj=dropmenuobj.style
		dropmenuobj.widthobj.width=menuwidth
	}
	if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
		obj.visibility=visible
	else if (e.type=="click")
		obj.visibility=hidden
}

function iecompattest(){
	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
	var edgeoffset=0
	if (whichedge=="rightedge"){
		var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
		dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
		if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
			edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
	}
	else{
		var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
		var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
		dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
		if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
			edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
		if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
			edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
	}
	}
	return edgeoffset
}

function populatemenu(what){
	if (ie4||ns6)
		dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
	if (window.event) 
		event.cancelBubble=true
	else if (e.stopPropagation) 
		e.stopPropagation()
	clearhidemenu()
	dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
	populatemenu(menucontents)
	
	if (ie4||ns6){
		showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
		
		dropmenuobj.x=getposOffset(obj, "left")
		dropmenuobj.y=getposOffset(obj, "top")
		dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
		dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+5+"px"
	}
	
	return clickreturnvalue()
}

function clickreturnvalue(){
	if (ie4||ns6) 
		return true
	else 
		return false
}

function contains_ns6(a, b) {
	while (b.parentNode)
		if ((b = b.parentNode) == a)
			return true;
	return false;
}

function dynamichide(e){
	if (ie4&&!dropmenuobj.contains(e.toElement))
		delayhidemenu()
	else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
		delayhidemenu()
}

function hidemenu(e){
	if (typeof dropmenuobj!="undefined"){
		if (ie4||ns6)
			dropmenuobj.style.visibility="hidden"
	}
}

function delayhidemenu(){
	if (ie4||ns6)
		delayhide = setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
	if (typeof delayhide != "undefined")
	 	clearTimeout(delayhide)
}

if (hidemenu_onclick == "yes")
	document.onclick = hidemenu

