$(document).ready(function() {
	$('#start').click(function(){
		var type_need = $('#type_need').val();
		$(".content2").slideUp("slow");
		$.ajax({
			method: "get", url: "../meet-director/ajax.php", data: "type_need="+type_need+"&next_step=step1",
			beforeSend: function(){$("#loading").show("slow");}, //show loading just when link is clicked
			complete: function(){ $("#loading").hide("slow");}, //stop showing loading when the process is complete
			success: function(html){
				$(".content").show("slow");
				$(".content").html(html);
			}
		});
	}); 
});


