﻿$(document).ready(function() {

    $.fn.wait = function(time, type) {
        time = time || 3000;
        type = type || "fx";
        return this.queue(type, function() {
            var self = this;
            setTimeout(function() {
                $(self).dequeue();
            }, time);
        });
    };

    $('.FactsheetsBoxINDiGOOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxINDiGO').wait(800).fadeIn("slow");
    $('.FactsheetsBoxAPIOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxAPI').wait(800).fadeIn("slow");
    $('.FactsheetsBoxSSCOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxSSC').wait(800).fadeIn("slow");
    $('.FactsheetsBoxPreClinOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxPreClin').wait(800).fadeIn("slow");
    $('.FactsheetsBoxPharmaOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxPharma').wait(800).fadeIn("slow");
    $('.FactsheetsBoxPACOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxPAC').wait(800).fadeIn("slow");
    $('.FactsheetsBoxClinOpsOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxClinOps').wait(800).fadeIn("slow");
    $('.FactsheetsBoxInformaticsOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxInformatics').wait(800).fadeIn("slow");
    $('.FactsheetsBoxConsultingOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxConsulting').wait(800).fadeIn("slow");
    $('.FactsheetsBoxProjManOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxProjMan').wait(800).fadeIn("slow");
    $('.FactsheetsBoxLaurusOverview').wait(800).fadeIn("slow");
    $('.FactsheetsBoxLaurus').wait(800).fadeIn("slow");

});