	
	$(document).ready(function(){
	
	$(".close-bt").click(function () {

  		$("#popUp1").fadeOut("slow");
  		$("#popUp2").fadeOut("slow");
  		$("#popUp3").fadeOut("slow");
  		$("#popUp4").fadeOut("slow");

    });

	$("#freeInspect-bt").click(function () {

  		$("#popUp1").fadeIn("slow");
  		$("#popUp2").fadeOut("slow");
  		$("#popUp3").fadeOut("slow");
  		$("#popUp4").fadeOut("slow");
  		

    });
    
    	$("#dontpanic-bt").click(function () {

  		$("#popUp2").fadeIn("slow");
  		$("#popUp1").fadeOut("slow");
  		$("#popUp3").fadeOut("slow");
  		$("#popUp4").fadeOut("slow");

    });
    
    	$("#real").click(function () {

  		$("#popUp3").fadeIn("slow");
  		$("#popUp2").fadeOut("slow");
  		$("#popUp1").fadeOut("slow");
  		$("#popUp4").fadeOut("slow");

    });
    
    	$("#save-bt").click(function () {

  		$("#popUp4").fadeIn("slow");
  		$("#popUp2").fadeOut("slow");
  		$("#popUp3").fadeOut("slow");
  		$("#popUp1").fadeOut("slow");

    });
    
      });
    

