//function Christopher Edge Chairmanfunction showHideItems_ce(myItem, myButton){//this is the ID of the hidden itemvar myItem = document.getElementById(myItem);//this is the ID of the plus/minus button imagevar myButton = document.getElementById(myButton);    if (myItem.style.display != "none") {        //items are currently displayed, so hide them        myItem.style.display = "none";        swapImage_ce(myButton,"plus");    }    else {        //items are currently hidden, so display them        myItem.style.display = "block";        swapImage_ce(myButton,"minus");    }}

//function to swap an image based on its current state
function swapImage_ce(myImage, state) {    if (state == "minus") {        document.getElementById('myAnchor1').innerHTML = 'Close -';    }    else {        document.getElementById('myAnchor1').innerHTML = 'Expand +';}
}


//function Stewart McGuffie Chief Executivefunction showHideItems_sm(myItem, myButton){//this is the ID of the hidden itemvar myItem = document.getElementById(myItem);//this is the ID of the plus/minus button imagevar myButton = document.getElementById(myButton);    if (myItem.style.display != "none") {        //items are currently displayed, so hide them        myItem.style.display = "none";        swapImage_sm(myButton,"plus");    }    else {        //items are currently hidden, so display them        myItem.style.display = "block";        swapImage_sm(myButton,"minus");    }}

//function to swap an image based on its current state
function swapImage_sm(myImage, state) {    if (state == "minus") {        document.getElementById('myAnchor2').innerHTML = 'Close -';    }    else {        document.getElementById('myAnchor2').innerHTML = 'Expand +';}
}



//function John Reed Managing Director - William Reedfunction showHideItems_jr(myItem, myButton){//this is the ID of the hidden itemvar myItem = document.getElementById(myItem);//this is the ID of the plus/minus button imagevar myButton = document.getElementById(myButton);    if (myItem.style.display != "none") {        //items are currently displayed, so hide them        myItem.style.display = "none";        swapImage_jr(myButton,"plus");    }    else {        //items are currently hidden, so display them        myItem.style.display = "block";        swapImage_jr(myButton,"minus");    }}

//function to swap an image based on its current state
function swapImage_jr(myImage, state) {    if (state == "minus") {        document.getElementById('myAnchor3').innerHTML = 'Close -';    }    else {        document.getElementById('myAnchor3').innerHTML = 'Expand +';}
}



//function Julian Russell Managing Director - Mayfield Yarnsfunction showHideItems_jru(myItem, myButton){//this is the ID of the hidden itemvar myItem = document.getElementById(myItem);//this is the ID of the plus/minus button imagevar myButton = document.getElementById(myButton);    if (myItem.style.display != "none") {        //items are currently displayed, so hide them        myItem.style.display = "none";        swapImage_jru(myButton,"plus");    }    else {        //items are currently hidden, so display them        myItem.style.display = "block";        swapImage_jru(myButton,"minus");    }}

//function to swap an image based on its current state
function swapImage_jru(myImage, state) {    if (state == "minus") {        document.getElementById('myAnchor4').innerHTML = 'Close -';    }    else {        document.getElementById('myAnchor4').innerHTML = 'Expand +';}
}




//function Joanne Grace Group Finance Directorfunction showHideItems_jg(myItem, myButton){//this is the ID of the hidden itemvar myItem = document.getElementById(myItem);//this is the ID of the plus/minus button imagevar myButton = document.getElementById(myButton);    if (myItem.style.display != "none") {        //items are currently displayed, so hide them        myItem.style.display = "none";        swapImage_jg(myButton,"plus");    }    else {        //items are currently hidden, so display them        myItem.style.display = "block";        swapImage_jg(myButton,"minus");    }}

//function to swap an image based on its current state
function swapImage_jg(myImage, state) {    if (state == "minus") {        document.getElementById('myAnchor5').innerHTML = 'Close -';    }    else {        document.getElementById('myAnchor5').innerHTML = 'Expand +';}
}
