﻿$(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);
        });
    };

    $('.FactsheetsBoxDiscoServices').wait(800).fadeIn("slow");
    $('.FactsheetsBoxINDiGO').wait(800).fadeIn("slow");
    $('.FactsheetsBoxAPI').wait(800).fadeIn("slow");
    $('.FactsheetsBoxSSC').wait(800).fadeIn("slow");
    $('.FactsheetsBoxPreClin').wait(800).fadeIn("slow");
    $('.FactsheetsBoxPharma').wait(800).fadeIn("slow");
    $('.FactsheetsBoxClinServices').wait(800).fadeIn("slow");
    $('.FactsheetsBoxPAC').wait(800).fadeIn("slow");
    $('.FactsheetsBoxClinOps').wait(800).fadeIn("slow");
    $('.FactsheetsBoxInformatics').wait(800).fadeIn("slow");
    $('.FactsheetsBoxConsulting').wait(800).fadeIn("slow");
    $('.FactsheetsBoxProjMan').wait(800).fadeIn("slow");
    $('.FactsheetsBoxLaurus').wait(800).fadeIn("slow");
    $('.FactsheetsBoxIDDS').wait(800).fadeIn("slow");
    $('.FactsheetsBoxFusion').wait(800).fadeIn("slow");

});
