function jumpto(x){

if (document.bioform.jumpmenu.value != "null") {
	document.location.href = x
	}
}

bios = new Array();

bios[0] = ['bio_abbot.html','Rodney Abbot'];
bios[1] = ['bio_bell.html','James Bell'];
bios[2] = ['bio_bellamy.html','Sarah Bellamy'];
bios[3] = ['bio_birdsall.html','Connie Birdsall'];
bios[4] = ['bio_bonan.html','Denis Bonan'];
bios[5] = ['bio_coomber.html','Lee Coomber'];
bios[6] = ['bio_danishmend.html','Ziya Danishmend'];
bios[7] = ['bio_desopo.html','Michael D\'Esopo'];
bios[8] = ['bio_dejanosi.html','Alex de Janosi'];
bios[9] = ['bio_diaz.html','Fabian Diaz'];
bios[10] = ['bio_fillip.html','Stefan Fillip'];
bios[11] = ['bio_folger.html','Hilary Folger'];
bios[12] = ['bio_glynn.html','Simon Glynn'];
bios[13] = ['bio_gove.html','Allen Gove'];
bios[14] = ['bio_hatfield.html','Kathleen Hatfield'];
bios[15] = ['bio_hogan.html','Suzanne Hogan'];
bios[16] = ['bio_johnston.html','Neil Johnston'];
bios[17] = ['bio_kennedy.html','John J. Kennedy'];
bios[18] = ['bio_kovalak.html','Ryan Kovalak'];
bios[19] = ['bio_lawrence.html','Steven Lawrence'];
bios[20] = ['bio_leis.html','David Leis'];
bios[21] = ['bio_markowitz.html','Paul Markowitz'];
bios[22] = ['bio_marshall.html','John Marshall'];
bios[23] = ['bio_mathews.html','Su Mathews'];
bios[24] = ['bio_mayer.html','Dave Mayer'];
bios[25] = ['bio_murphy.html','Brend&aacute;n Murphy'];
bios[26] = ['bio_oconnor.html','Lynne O\'Connor'];
bios[27] = ['bio_parisse.html','Vincent Parisse'];
bios[28] = ['bio_perri.html','Vincenzo Perri'];
bios[29] = ['bio_sloan.html','Mike Sloan'];
bios[30] = ['bio_stone.html','Randall Stone'];
bios[31] = ['bio_stringer.html','Adam Stringer'];
bios[32] = ['bio_wilke.html','Richard Wilke'];
bios[33] = ['bio_wise.html','Rick Wise'];
bios[34] = ['bio_wright.html','James Wright'];

function writeMenu() {
var i = 0;
	while (i < bios.length) {
	document.writeln('<option value="' + bios[i][0] + '">' + bios[i][1] + '</option>');
	i++;
	}
}

writeMenu();
