function switchMatch()
{
	// jQuery
	first = $('#prevMatch');
	second = $('#nextMatch');

	// Hidden?
	if(first.css('display') == 'none')
	{
		second.slideUp('slow');
		first.slideDown('slow');
		$('#nextMatchTitle').css('font-weight', 'normal');
		$('#prevMatchTitle').css('font-weight', 'bold');
	}
	else
	{
		first.slideUp('slow');
		second.slideDown('slow');
		$('#prevMatchTitle').css('font-weight', 'normal');
		$('#nextMatchTitle').css('font-weight', 'bold');
	}
}
