
var menu_options = new Array();
	
	menu_options[0] = "about_dropdown";
	menu_options[1] = "services_dropdown";
	menu_options[2] = "resources_dropdown";
	menu_options[3] = "people_dropdown";


function show(id) {

	for (i = 0 ; i < menu_options.length; i++) {
	
		document.getElementById(menu_options[i]).style.visibility = "hidden"
		
	}
	document.getElementById(id).style.visibility = "visible"
	active_id = id
}
function hide(id) {
	
	if (id != active_id) {
		document.getElementById(id).style.visibility = "hidden"
	}
}

function set_hide_timeout(id) {
	active_id = undefined
	recent_mouseout_id = id
	setTimeout('hide(recent_mouseout_id)', 2000)
}


function changeImage( obj ) {
  document.theImage.src=obj.img.src
  currentLink=obj.link
}


function go() {
   if (currentLink != undefined) {
  	 location.href=currentLink
  	 return false
   }
   return true
}
var currentLink = undefined

var recent_mouseout_id = undefined

var active_id = undefined

