$(document).ready(function() {
	$('#male').click(function(event) {
		$('#pregnancy').hide();
		$('#gynaecology').hide();
		$('#balls').show();
		$('#male').attr('class', 'active');
		$('#female').removeAttr('class');
		$('#gender').val('male');
		$('#orange9Female').hide(); // hide female question
		$('#alcohol').text('21');
		event.preventDefault();
	});
	
	$('#female').click(function(event) {
		$('#pregnancy').show();
		$('#gynaecology').show();
		$('#balls').hide();
		$('#male').removeAttr('class');
		$('#female').attr('class', 'active');
		$('#gender').val('female');
		$('#orange9Female').show(); // show female question
		$('#alcohol').text('14');
		event.preventDefault();
	});
});