$(document).ready(
	function(){
		$('#buttonAnswer').click(function(){
			//hide the button and the question
			$(this).fadeOut('slow');
			$('div.spotlighttext').fadeOut('slow', function() {
				//show loading for 4 seconds
				$('#activityIndicator-spotlight').show();
				
				$(this).delay(2000,function(){
					$('#activityIndicator-spotlight').hide();
					$('#spotlightanswer').fadeIn('slow');
				});
				
			});
			
			return false;
		
		});
	}
);