Show and Hide form

My problem is, when i clicked the “Events” and "Alumni Event " form, the form doesn’t appear.
This is my code.
// For full API documentation, including code examples, visit Velo API Reference - Wix.com

$w.onReady(function () {
//TODO: write your page related code here…

});
export function button5_click(event, $w) {
//Add your code for this event here:
$w(“#box4”).show();
$w(“#box6”).hide();
$w(“#box3”).hide();
$w(“#box8”).hide();
$w(“#box10”).hide();
$w(“#box12”).hide();
$w(“#box14”).hide();
}

export function button8_click(event, $w) {
//Add your code for this event here:
$w(“#box6”).show();
$w(“#box4”).hide();
$w(“#box3”).hide();
$w(“#box8”).hide();
$w(“#box10”).hide();
$w(“#box12”).hide();
$w(“#box14”).hide();
}

export function button6_click(event, $w) {
//Add your code for this event here:
$w(“#box8”).show();
$w(“#box4”).hide();
$w(“#box3”).hide();
$w(“#box6”).hide();
$w(“#box10”).hide();
$w(“#box12”).hide();
$w(“#box14”).hide();

}

export function button18_click(event, $w) {
//Add your code for this event here:
$w(“#box10”).show();
$w(“#box4”).hide();
$w(“#box3”).hide();
$w(“#box6”).hide();
$w(“#box8”).hide();
$w(“#box12”).hide();
$w(“#box14”).hide();

}
export function button17_click(event, $w) {
//Add your code for this event here:
$w(“#box12”).show();
$w(“#box4”).hide();
$w(“#box3”).hide();
$w(“#box6”).hide();
$w(“#box8”).hide();
$w(“#box10”).hide();
$w(“#box14”).hide();
}

export function button31_click(event, $w) {
//Add your code for this event here:
$w(“#box14”).show();
$w(“#box4”).hide();
$w(“#box3”).hide();
$w(“#box6”).hide();
$w(“#box8”).hide();
$w(“#box10”).hide();
$w(“#box12”).hide();
}

Hi,
Can you please clarify what is the use case? What are you trying to achieve?
What is the result right now?