﻿function FiveSBoxShowOrHideDropDown() {
    var BoxAroundFiveSBoxDropDownDivs = document.getElementById('BoxAroundFiveSBoxDropDownDivs');
    var FiveSBoxTriangle = document.getElementById('FiveSBoxTriangle');
    if (BoxAroundFiveSBoxDropDownDivs.style.display == 'block') {
        BoxAroundFiveSBoxDropDownDivs.style.display = 'none';
        FiveSBoxTriangle.innerHTML = '>';
    }
    else {
        BoxAroundFiveSBoxDropDownDivs.style.display = 'block';
        FiveSBoxTriangle.innerHTML = 'V';
    }
}

function FiveMSBoxShowOrHideDropDown() {
    var BoxAroundFiveMSBoxDropDownDivs = document.getElementById('BoxAroundFiveMSBoxDropDownDivs');
    var FiveMSBoxTriangle = document.getElementById('FiveMSBoxTriangle');
    if (BoxAroundFiveMSBoxDropDownDivs.style.display == 'block') {
        BoxAroundFiveMSBoxDropDownDivs.style.display = 'none';
        FiveMSBoxTriangle.innerHTML = '>';
    }
    else {
        BoxAroundFiveMSBoxDropDownDivs.style.display = 'block';
        FiveMSBoxTriangle.innerHTML = 'V';
    }
}

function BeforeAndAfterBoxShowOrHideDropDown() {
    var BoxAroundBeforeAndAfterBoxDropDownDivs = document.getElementById('BoxAroundBeforeAndAfterBoxDropDownDivs');
    var BeforeAndAfterBoxTriangle = document.getElementById('BeforeAndAfterBoxTriangle');
    if (BoxAroundBeforeAndAfterBoxDropDownDivs.style.display == 'block') {
        BoxAroundBeforeAndAfterBoxDropDownDivs.style.display = 'none';
        BeforeAndAfterBoxTriangle.innerHTML = '>';
    }
    else {
        BoxAroundBeforeAndAfterBoxDropDownDivs.style.display = 'block';
        BeforeAndAfterBoxTriangle.innerHTML = 'V';
    }
}

function EightWastesBoxShowOrHideDropDown() {
    var BoxAroundEightWastesBoxDropDownDivs = document.getElementById('BoxAroundEightWastesBoxDropDownDivs');
    var EightWastesBoxTriangle = document.getElementById('EightWastesBoxTriangle');
    if (BoxAroundEightWastesBoxDropDownDivs.style.display == 'block') {
        BoxAroundEightWastesBoxDropDownDivs.style.display = 'none';
        EightWastesBoxTriangle.innerHTML = '>';
    }
    else {
        BoxAroundEightWastesBoxDropDownDivs.style.display = 'block';
        EightWastesBoxTriangle.innerHTML = 'V';
    }
}

function LeanIdeasBoxShowOrHideDropDown() {
    var BoxAroundLeanIdeasBoxDropDownDivs = document.getElementById('BoxAroundLeanIdeasBoxDropDownDivs');
    var LeanIdeasBoxTriangle = document.getElementById('LeanIdeasBoxTriangle');
    if (BoxAroundLeanIdeasBoxDropDownDivs.style.display == 'block') {
        BoxAroundLeanIdeasBoxDropDownDivs.style.display = 'none';
        LeanIdeasBoxTriangle.innerHTML = '>';
    }
    else {
        BoxAroundLeanIdeasBoxDropDownDivs.style.display = 'block';
        LeanIdeasBoxTriangle.innerHTML = 'V';
    }
}