// Generic interface for queueing onload events
		
(function($) {
    	
	function ShowMainContentBlock()
	{
        var iDiv = $('#ares-body-interstitial'),
            mDiv = $('#ares-body-maincontent'); 
        
		if(iDiv && mDiv)
		{
			iDiv.hide();
			mDiv.fadeIn(800);
		}
	}
	
    $(window).load(function() {
    
    	try {
    	    ShowMainContentBlock();

        	if(typeof BundleInterstitialOnLoadHandler == 'function') { 
        	    BundleInterstitialOnLoadHandler();
        	}
        } catch(e) {
            return false;    
        }    
    
    });		
	
})(jQuery);
