﻿$(document).ready(function() {
    $("#Investigate").click(function() {
        $("#Investigate").hide("slow");
        $("#Consult").hide("slow");
        $("#Train").hide("slow");
        $("#Protect").hide("slow");
        $("#Customer").hide("slow");

        $("#InvestigateDetail").show("slow");
    });

    $("#InvestigateDetail").click(function() {
        $("#InvestigateDetail").hide();

        $("#Investigate").show();
        $("#Consult").show();
        $("#Train").show();
        $("#Protect").show();
        $("#Customer").show();
    });

    $("#Consult").click(function() {
        $("#Investigate").hide("slow");
        $("#Consult").hide("slow");
        $("#Train").hide("slow");
        $("#Protect").hide("slow");
        $("#Customer").hide("slow");

        $("#ConsultDetail").show("slow");
    });

    $("#ConsultDetail").click(function() {
        $("#ConsultDetail").hide();

        $("#Investigate").show();
        $("#Consult").show();
        $("#Train").show();
        $("#Protect").show();
        $("#Customer").show();
    });

    $("#Train").click(function() {
        $("#Investigate").hide("slow");
        $("#Consult").hide("slow");
        $("#Train").hide("slow");
        $("#Protect").hide("slow");
        $("#Customer").hide("slow");

        $("#TrainDetail").show("slow");
    });

    $("#TrainDetail").click(function() {
        $("#TrainDetail").hide();

        $("#Investigate").show();
        $("#Consult").show();
        $("#Train").show();
        $("#Protect").show();
        $("#Customer").show();
    });

    $("#Protect").click(function() {
        $("#Investigate").hide("slow");
        $("#Consult").hide("slow");
        $("#Train").hide("slow");
        $("#Protect").hide("slow");
        $("#Customer").hide("slow");

        $("#ProtectDetail").show("slow");
    });

    $("#ProtectDetail").click(function() {
        $("#ProtectDetail").hide();

        $("#Investigate").show();
        $("#Consult").show();
        $("#Train").show();
        $("#Protect").show();
        $("#Customer").show();
    });


    $("#Customer").click(function() {
        $("#Investigate").hide("slow");
        $("#Consult").hide("slow");
        $("#Train").hide("slow");
        $("#Protect").hide("slow");
        $("#Customer").hide("slow");

        $("#CustomerDetail").show("slow");
    });

    $("#CustomerDetail").click(function() {
        $("#CustomerDetail").hide();

        $("#Investigate").show();
        $("#Consult").show();
        $("#Train").show();
        $("#Protect").show();
        $("#Customer").show();
    });
});        
