// Begin drop-down function

function formHandler(form) {

	if (form.Nav.options[form.Nav.selectedIndex].value == "1") {
		redirect = top.window.location="/hot100/2005/hot100_assistants.html";
	}
	else if (form.Nav.options[form.Nav.selectedIndex].value == "2") {
		redirect = top.window.location="/hot100/2005/hot100_bar.html";
	}
	else if (form.Nav.options[form.Nav.selectedIndex].value == "3") {
		redirect = top.window.location="/hot100/2005/hot100_corporate.html";
	}
	else if (form.Nav.options[form.Nav.selectedIndex].value == "4") {
		redirect = top.window.location="/hot100/2005/hot100_education.html";
	}
	else if (form.Nav.options[form.Nav.selectedIndex].value == "5") {
		redirect = top.window.location="/hot100/2005/hot100_finance.html";
	}
	else if (form.Nav.options[form.Nav.selectedIndex].value == "6") {
		redirect = top.window.location="/hot100/2005/hot100_infrastructure.html";
	}
	else if (form.Nav.options[form.Nav.selectedIndex].value == "7") {
		redirect = top.window.location="/hot100/2005/hot100_inhouse.html";
	}
	else if (form.Nav.options[form.Nav.selectedIndex].value == "8") {
		redirect = top.window.location="/hot100/2005/hot100_litigation.html";
	}
	else if (form.Nav.options[form.Nav.selectedIndex].value == "9") {
		redirect = top.window.location="/hot100/2005/hot100_management.html";
	}
	else {
		redirect = top.window.location="";	
	}
}

// End 
