﻿$j(function($) {
    $(document).ready(function() {
        // Interstial Ad
        if ($('div.popup_block_iad').length) {
            $('#container, #jive-wrapper').append('<div id="fade_iad"></div>');
            var pID = $('div.popup_block_iad').attr('id');
            $('#' + pID).fadeIn().prepend('<a href="#" class="close_iad"><img src="http://img.itbe.com/reports/images/close.gif" class="btn_close_iad" title="Close Window" alt="Close" /></a>');
            $('#fade_iad').css({ 'filter': 'alpha(opacity=80)' }).fadeIn(); // IE
            
            //Disappear after a few thousand milliseconds
            var timerId = setTimeout(function() { $('#fade_iad, #' + pID).fadeOut(); }, 15000);
            
            // Stop delay and fade out
            $('#' + pID).live('click', function() {
                clearTimeout(timerId);
                $('#fade_iad, #' + pID).fadeOut();
                //.fadeOut(function() {   $('#fade_iad, #' + pID).remove();  });
                return false;
            });
        }
    });
});
