function matchupToggle(ele) {
	var headerMatchup = document.getElementById('headerMatchup');
	var headerLastmatch = document.getElementById('headerLastmatch');
	var contentMatchup = document.getElementById('contentMatchup');
	var contentLastmatch = document.getElementById('contentLastmatch');
	
	if (ele == 'matchup') {
		headerMatchup.style.display = 'block';
		headerLastmatch.style.display = 'none';
		contentMatchup.style.display = 'block';
		contentLastmatch.style.display = 'none';
	}
	else if (ele == 'lastmatch') {
		headerMatchup.style.display = 'none';
		headerLastmatch.style.display = 'block';
		contentMatchup.style.display = 'none';
		contentLastmatch.style.display = 'block';
	}
}
