jQuery(function($) {
	$('#section-three .tooltip').fadeOut(0);
	$('#section-three input[type=radio] + span').click(function(e) {
		e.preventDefault();
		$('#section-three .tooltip').fadeOut(0);
		$('#' + $(e.target).prev().attr('id') + '-tooltip').fadeIn('fast');
	});
	$('#section-three .tooltip > small').css('cursor','pointer').click(function(e) {
		$(e.target).parent().fadeOut('fast');
	})
});
