function showHideClientOverview(id) {
	for(x=1;x<=5;x++) {
		thisItem = 'item' + x;
		if(x == id && document.getElementById(thisItem).style.display == 'block') {
			document.getElementById(thisItem).style.display = 'none';
		}
		else if(x == id && document.getElementById(thisItem).style.display == 'none') {
			document.getElementById(thisItem).style.display = 'block';
		}
		else {
			document.getElementById(thisItem).style.display = 'none';	
		}
	}
}

function autoDrop(){
	var URL = document.bioDrop.bio.options[document.bioDrop.bio.selectedIndex].value;
	var theLink = "team2.php?bio=" + URL;
	if(URL == "team") {
		window.location.href = "team2.php";
	}	
	else {
		window.location.href = theLink;
	}
}
