$(function() {

	$("#next").hide();
	$("#next2").hide();
	$("#next3").hide();
	$("#next4").hide();
	$("#next5").hide();
	$("#again").hide();
	$("#cards-flip").hide();
	$("#step-1-text").hide();
	$("#step-2-text").hide();
	$("#step-3-text").hide();
	$("#step-4-text").hide();
	$("#step-5-text").hide();
	$("#step-6-text").hide();
	$("#cards-final").hide();
	$("#spinner").hide();

	$("#start").click(function(){
		$("#dispcard-banner").hide();
		$("#step-1-text").show();
		$(this).hide();
		$("#next").show();
	});
	
	$("#next").click(function(){
		$("#cards-flat").hide();
		$("#loadin-area").load("/carddisapper-loadin.html");
		$(this).hide();
		$("#next2").show();
		$("#step-1-text").hide();
		$("#step-2-text").show();
	});
	
	$("#next2").click(function(){
		$("#step-2-text").hide();
		$("#step-3-text").show();
		$(this).hide();
		$("#next3").show();
		$("#spinner").show();
		$("#loadin-area").hide();
	});
	
	$("#next3").click(function(){
		$("#step-3-text").hide();
		$("#step-4-text").show();
		$(this).hide();
		$("#next4").show();
	});
	
	$("#next4").click(function(){
		$("#step-4-text").hide();
		$("#step-5-text").show();
		$(this).hide();
		$("#next5").show();
		$("#spinner").hide();
		$("#cards-final").show();
		$("#again").show();
	});
	
	$("#again").click(function(){
		location.reload(true);
	});
});

