$(document).ready(function() {
	$('#races a').click(function () {
		$('#results').load('Racing/' + $(this).attr('href') + ' #wrap', "", function(responseText, textStatus, XMLHttpRequest) {
			switch (XMLHttpRequest.status) {
				case 200: break;
				case 404:
					$('#results').html('<p>Looks like the results have not been uploaded to the server yet. Please check back later.</p>');
					break;
				default:
					$('#results').html('<p>' + XMLHttpRequest.status + ': ' + XMLHttpRequest.statusText + '. Please contact the club and let them know.</p>');
					break;
			}
		});
		return false;
	});
});
