/**
 * Controller Script for Explore Page
 * @requires jQuery
 */
 
/*global c4props, document, jQuery, location, s_account, swfRoot, swfobject */

// Implied global
var C4 = C4 || {};

// Brand Hub Page
C4.Controller = (function exploreControllerInit($) {

    Views = {
	
		tidyAdverts: function tidyAdverts() {
			if($('div#c4ad-Middle1').is(':empty')) {
				$('div#c4ad-Middle1').remove();
			}
		}
	}

    Events = { }


    // Public init method
    return {
        init: function init() {	
	    C4.Brand.Views.enhanceSponsorship();
	    Views.tidyAdverts();
        },	
	_getViews: function _getViews() {
	    return Views;
	},
	_getEvents: function _getEvents() {
	    return Events;
	}
    };

})(jQuery);
