advancedConfigMenuHandler: function()

in script.js [91:103]


		advancedConfigMenuHandler: function() {
			$('li .fbmcc-menuParentLink').click(
				function () {
          if ($(this).parent().find('ul.fbmcc-submenu').css("display") === "none") {
            $(this).parent().find('img.fbmcc-chevron').attr("src", $(this).parent().find('img.fbmcc-chevron').attr("src").replace("chevron-right", "chevron-down"));
            $(this).parent().find('ul.fbmcc-submenu').slideDown('slow', 'swing');
          } else {
            $(this).parent().find('img.fbmcc-chevron').attr("src", $(this).parent().find('img.fbmcc-chevron').attr("src").replace("chevron-down", "chevron-right"));
            $(this).parent().find('ul.fbmcc-submenu').slideUp('slow', 'swing');
          }
				}
			)
    },