﻿;(function ($) {

    $(document).ready(function () {
        thickbox.popThickbox();
    });

    thickbox = {
        //If thickbox is required, pop it up onload
        popThickbox: function () {
            var enableOnload = $("span.displaypopup").val();
            var thickboxLink = $(".thickbox").attr("href");
            var thickboxTitle = $(".thickbox").attr("title");

            if (enableOnload != null) {
                tb_show(thickboxTitle, thickboxLink, null);
            }
        }
    };

})(jQuery);