// JavaScript Document

function onCareerMenuChange() {
	var current = document.careerMenuForm.careerMenu.selectedIndex;
	var currentLocation = document.location.toString();
	var hashIndex = currentLocation.indexOf("#");
	if(hashIndex != -1) {
		currentLocation = currentLocation.substr(0, hashIndex);
	}
	var newLocation = currentLocation + document.careerMenuForm.careerMenu[current].value;
	document.location = newLocation;
}