$(document).ready(function() {
	$('#sponsors-loading').hide();
	$('#sponsor-level-select').change(function() {
		var url = $(this).val();
		$('#sponsor_results').fadeOut('normal', function() {
			$('#sponsors-loading').fadeIn('normal', function() {
				$.get(url, "", function(d,s) {
					$('#sponsor_results').empty().html(d);
					$('#sponsors-loading').fadeOut('normal', function() {
						$('#sponsor_results').fadeIn('normal');
					});
				});
			});
		});
	});
});