in script.js [93:101]
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');
}
}