$(document).ready(function() {
   
    // This function displays the popup window on every "X" pageload
    $.post(CI_ROOT + 'popup/show_popup', function(data) {
        //Display the popup
        if(data=='true') {
            $('div#video').hide();
            $('div.landing_widgets').hide();
            $('div.video_area').hide();
            $('a.popup').fancybox(
                {
                    autoscale:true,
                    onClosed: function(){
                        $('div#video').show();
                        $('div.landing_widgets').show();
                        $('div.video_area').show();
                    }
                });
                $("a.popup").trigger('click');
        }
    });


})



