$(document).ready(function() {
	$("#submenu")
		.find(".explode")
		.hover(function() {
				$(this).find(".hidden").show();
			},
			function() {
				$(this).find(".hidden").hide();
		});

	if($("#mv_toggle").length > 0) {
		$("#most_viewed ul:hidden").hide().removeClass("hidden");
		$("#mv_toggle a").click(function() {
			if($(this).hasClass("active"))
				return false;
			var toShow = $("#most_viewed ul:hidden");
			var toHide = $("#most_viewed ul:visible");
			toShow.show();
			toHide.hide();
			$(this).parent().find(".active").removeClass("active");
			$(this).addClass("active");
			return false;
		});
	}

	if($("#mc_toggle").length > 0) {
		$("#most_commented ul:hidden").hide().removeClass("hidden");
		$("#mc_toggle a").click(function() {
			if($(this).hasClass("active"))
				return false;
			var toShow = $("#most_commented ul:hidden");
			var toHide = $("#most_commented ul:visible");
			toShow.show();
			toHide.hide();
			$(this).parent().find(".active").removeClass("active");
			$(this).addClass("active");
			return false;
		});
	} 
});