function $(i) {
	return document.getElementById(i);
}

function menuHover(i) {
	var c = $('c' + i).className;
	if (c == 'hide') {
		$('c' + i).className = '';
	} else {
		$('c' + i).className = 'hide';
	}
}

function dropDown() {
	var str = '<ul class="top"><li onmouseover="menuHover(1)" onmouseout="menuHover(1)"><a href="/who_we_are/">Who We Are</a><ul id="c1" class="hide"><li><a href="/who_we_are/organization.html">Organization</a></li><li><a href="/who_we_are/member_agencies.html">Member Agencies</a></li><li><a href="/who_we_are/policy_boards.html">Policy Boards/Committees</a></li><li><a href="/who_we_are/urbanized_area_policy_board.html"> - Urbanized Area</a></li><li><a href="/who_we_are/rural_policy_board.html"> - Rural Area</a></li><li><a href="/what_we_do/transportation_technical_advisory_committee.html"> - Transportation Technical</a></li><li><a href="/what_we_do/regional_trails_and_bicycling_committee.html">- Regional Trails &amp; Bicycle</a></li><li><a href="/who_we_are/jccog_staff.html">JCCOG Staff</a></li></ul></li><li onmouseover="menuHover(2)" onmouseout="menuHover(2)"><a href="/what_we_do/">What We Do</a><ul id="c2" class="hide"><li><a href="/what_we_do/administration.html">Administration</a></li><li><a href="/what_we_do/human_services.html">Human Services</a></li><li><a href="/what_we_do/transit_planning_and_administration.html">Transportation Planning</a></li><li><a href="/what_we_do/lrmmtp.html"> - LRMMTP</a></li><li><a href="/what_we_do/bicycle_and_pedestrian_planning.html"> - Bicycle &amp; Pedestrian Planning</a></li><li><a href="/what_we_do/transit_planning_and_administration.html"> - Transit Planning </a></li><li><a href="/what_we_do/transportation_engineering_planning.html"> - Transportation Engineering</a></li><li><a href="/what_we_do/streets_and_highway_planning.html"> - Street &amp; Highway Planning</a></li></ul></li><li onmouseover="menuHover(3)" onmouseout="menuHover(3)"><a href="/resources/">Resources</a><ul id="c3" class="hide"><li><a href="/resources/publications.html">Publications</a></li><li><a href="/resources/grant_opportunities.html">Grant Opportunities</a></li><li><a href="/resources/agendas/">Meeting Agendas/Minutes</a></li></ul></li><li><a href="/sitemap/">Site Map</a></li><li><a href="/search/">Search</a></li></ul>';
    
    document.write(str);
}

dropDown();


// Makes external links open in a new window
function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		var relvalue = anchor.getAttribute("rel");
		if (anchor.getAttribute("href")) {
			var external = /external/;
			var relvalue = anchor.getAttribute("rel");
			if (external.test(relvalue)) { anchor.target = "_blank"; }
			}
		}
	}
    
window.onload = externalLinks;