//===========================================================================
// dropdown menu

//Contents for menu 1
var menu1 = [
'<a href="http://ghsogrants.dps.state.oh.us/Portal.asp">Online Grants System</a>',
'<a href="../otso_grantee_info.stm">Grantees Information</a>'
]
							
//Contents for menu 2
var menu2 = [
'<a href="../otso_annual_crash_facts.stm">Annual Traffic Crash Facts</a>',
'<a href="../otso_request_crash_info.stm">Request Crash Information</a>',
'<a href="https://ext.dps.state.oh.us/crashreports/Default.aspx">Crash Statistics System</a>',
'<a href="http://www.dps.state.oh.us/OHCrashReports/">Retrieve Ohio Crash Reports</a>',
'<a href="../otso_law_enforcement_info.stm">Law Enforcement Information</a>',
'<a href="../otso_reference_materials.stm">Reference Materials</a>',
'<a href="../otso_otherlinks.stm">Other Links</a>'
]

//Contents for menu 3
var menu3 = [
'<a href="http://www.dps.state.oh.us/drivingschools/">Approved Driving Schools</a>',
'<a href="http://www.drivertraining.ohio.gov/laws.htm">Ohio Driving Laws</a>',
'<a href="http://www.drivertraining.ohio.gov/parentsteens.htm">Parent & Teens</a>',
'<a href="">Find an Exam Station</a>',
'<a href="http://www.ohiodrivingtest.com/">Schedule a Driving Test</a>',
'<a href="http://www.drivertraining.ohio.gov/schools.htm">Information for Driving Schools</a>',
'<a href="http://www.drivertraining.ohio.gov/instructors.htm">Driving Instructors</a>',
'<a href="http://www.drivertraining.ohio.gov/rules.htm">Pending Rules</a>'
]

//Contents for menu 4
var menu4 = [
'<a href="http://www.motorcycle.ohio.gov/about_us.html">About Us</a>',
'<a href="http://www.motorcycle.ohio.gov/MOP0027_MOInfoBook.pdf">MO Program Info</a>',
'<a href="http://www.motorcycle.ohio.gov/license.htm">Getting a License</a>',
'<a href="http://www.publicsafety.ohio.gov/index.stmodps_publications/Motorcycle_Op_Manual_07_07.pdf">Motorcycle Operator Manual</a>',
'<a href="http://www.motorcycle.ohio.gov/brc.htm">Basic Rider Course</a>',
'<a href="http://www.motorcycle.ohio.gov/brc2.html">Basic Rider 2 Course</a>',
'<a href="http://www.motorcycle.ohio.gov/erc.htm">Experienced Rider Course</a>',
'<a href="http://www.motorcycle.ohio.gov/privatetraining.htm">Private Training Sites</a>',
'<a href="http://www.motorcycle.ohio.gov/private.htm">Private Provider</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://www.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

