var list_across0 = [
'_contents.htm',
'_reference.htm',
'_index.htm',
'_search.htm',
'_external.htm'
];
var list_down1 = [
'links.htm',
'conferences.htm',
'journals.htm',
'packages.htm',
'publications.htm',
'resume.htm',
'pub_abstract.htm',
'white_paper.htm',
'ssh_key.htm',
'fedora_package.htm',
'bikelist.htm',
'rock_climb.htm',
'picture.htm'
];
var list_current0 = [
'resume.htm#Bradley M. Bell',
'resume.htm#Education',
'resume.htm#Employment',
'resume.htm#Work Experience',
'resume.htm#Research Experience',
'resume.htm#Skills Summary',
'resume.htm#Computer Languages and Systems',
'resume.htm#Example Software'
];
function choose_across0(item)
{	var index          = item.selectedIndex;
	item.selectedIndex = 0;
	if(index > 0)
		document.location = list_across0[index-1];
}
function choose_down1(item)
{	var index          = item.selectedIndex;
	item.selectedIndex = 0;
	if(index > 0)
		document.location = list_down1[index-1];
}
function choose_down0(item)
{	var index          = item.selectedIndex;
	item.selectedIndex = 0;
	if(index > 0)
		document.location = list_down0[index-1];
}
function choose_current0(item)
{	var index          = item.selectedIndex;
	item.selectedIndex = 0;
	if(index > 0)
		document.location = list_current0[index-1];
}

