dojo.ready(function() {
	
	if (dojo.style('super-menu', 'display') == 'block') {
		dojo.query('#main-menu-links li.active a').forEach(function(node) {
			if (dojo.attr(node, 'id') == 'tab-mma-forums') {
				show_forums();
			}
			if (dojo.attr(node, 'id') == 'tab-mobile-ceo-cmo-summit') {
				show_summit();
			}
			if (dojo.attr(node, 'id') == 'tab-the-smarties') {
				show_smarties();
			}
			if (dojo.attr(node, 'id') == 'tab-advertising-week') {
				show_adweek();
			}
			if (dojo.attr(node, 'id') == 'tab-other-events') {
				show_other();
			}
		});
	}
	
	dojo.query('.super-menu-close').forEach(function(node) {
		dojo.connect(node, 'onclick', function(e) {
			hide_menu();
		})
	});
	
	dojo.connect(dojo.byId('tab-mma-forums'), 'onmouseover', function(e) {
		show_forums();
	});
	dojo.connect(dojo.byId('tab-mobile-ceo-cmo-summit'), 'onmouseover', function(e) {
		show_summit();
	});
	dojo.connect(dojo.byId('tab-the-smarties'), 'onmouseover', function(e) {
		show_smarties();
	});
	dojo.connect(dojo.byId('tab-advertising-week'), 'onmouseover', function(e) {
		show_adweek();
	});
	dojo.connect(dojo.byId('tab-other-events'), 'onmouseover', function(e) {
		show_other();
	});
});

var show_menu = function() {
	if (dojo.byId('super-menu') && dojo.style('super-menu', 'height') < 1) {
		dojo.fx.wipeIn({node: 'super-menu', onEnd: function() {
			dijit.byId('super-menu-pager').resize();
		}}).play();
	}
}

var hide_menu = function() {
	if (dojo.byId('super-menu') && dojo.style('super-menu', 'height') > 0) {
		dojo.fx.wipeOut({node: 'super-menu'}).play();
	}
}

var show_forums = function() {
	show_menu();
	dijit.byId('super-menu-pager').selectChild('super-menu-mma-forums');
	dojo.addClass('tab-mma-forums', 'active');
	dojo.removeClass('tab-mobile-ceo-cmo-summit', 'active');
	dojo.removeClass('tab-the-smarties', 'active');
	dojo.removeClass('tab-advertising-week', 'active');
	dojo.removeClass('tab-other-events', 'active');
}

var show_summit = function() {
	show_menu();
	dijit.byId('super-menu-pager').selectChild('super-menu-mobile-ceo-cmo-summit');
	dojo.removeClass('tab-mma-forums', 'active');
	dojo.addClass('tab-mobile-ceo-cmo-summit', 'active');
	dojo.removeClass('tab-the-smarties', 'active');
	dojo.removeClass('tab-advertising-week', 'active');
	dojo.removeClass('tab-other-events', 'active');
}

var show_smarties = function() {
	show_menu();
	dijit.byId('super-menu-pager').selectChild('super-menu-the-smarties');
	dojo.removeClass('tab-mma-forums', 'active');
	dojo.removeClass('tab-mobile-ceo-cmo-summit', 'active');
	dojo.addClass('tab-the-smarties', 'active');
	dojo.removeClass('tab-advertising-week', 'active');
	dojo.removeClass('tab-other-events', 'active');
}

var show_adweek = function() {
	show_menu();
	dijit.byId('super-menu-pager').selectChild('super-menu-advertising-week');
	dojo.removeClass('tab-mma-forums', 'active');
	dojo.removeClass('tab-mobile-ceo-cmo-summit', 'active');
	dojo.removeClass('tab-the-smarties', 'active');
	dojo.addClass('tab-advertising-week', 'active');
	dojo.removeClass('tab-other-events', 'active');
}

var show_other = function() {
	show_menu();
	dijit.byId('super-menu-pager').selectChild('super-menu-other-events');
	dojo.removeClass('tab-mma-forums', 'active');
	dojo.removeClass('tab-mobile-ceo-cmo-summit', 'active');
	dojo.removeClass('tab-the-smarties', 'active');
	dojo.removeClass('tab-advertising-week', 'active');
	dojo.addClass('tab-other-events', 'active');
}
