function showTab(n){
	// Handles
	d=document.getElementById('people_table');
	p=document.getElementById('partners_table');
	m=document.getElementById('management_table');
	b=document.getElementById('board_table');
	a=document.getElementById('advisors_table');
	pt=document.getElementById('tab0');
	mt=document.getElementById('tab1');
	bt=document.getElementById('tab2');
	at=document.getElementById('tab3');

	switch (n){
		case PARTNERS_TABLE:
			p.style.display = "inline";
			m.style.display = "none";
			b.style.display = "none";
			a.style.display = "none";
			pt.style.backgroundPosition = "0px -27px";
			mt.style.backgroundPosition = "0px 0px";
			bt.style.backgroundPosition = "0px 0px";
			at.style.backgroundPosition = "0px 0px";
		break;
		case MANAGEMENT_TABLE:
			p.style.display = "none";
			m.style.display = "inline";
			b.style.display = "none";
			a.style.display = "none";
			pt.style.backgroundPosition = "0px 0px";
			mt.style.backgroundPosition = "0px -27px";
			bt.style.backgroundPosition = "0px 0px";
			at.style.backgroundPosition = "0px 0px";
		break;
		case BOARD_TABLE:
			p.style.display = "none";
			m.style.display = "none";
			b.style.display = "inline";
			a.style.display = "none";
			pt.style.backgroundPosition = "0px 0px";
			mt.style.backgroundPosition = "0px 0px";
			bt.style.backgroundPosition = "0px -27px";
			at.style.backgroundPosition = "0px 0px";
		break;
		case ADVISORS_TABLE:
			p.style.display = "none";
			m.style.display = "none";
			b.style.display = "none";
			a.style.display = "inline";
			pt.style.backgroundPosition = "0px 0px";
			mt.style.backgroundPosition = "0px 0px";
			bt.style.backgroundPosition = "0px 0px";
			at.style.backgroundPosition = "0px -27px";
		break;
	}
	window.focus();
}

// constants
PARTNERS_TABLE = 0;
MANAGEMENT_TABLE = 1;
BOARD_TABLE = 2;
ADVISORS_TABLE = 3;