

function hideftbox(){

  for (count=1; count<9; count+=1) // set "count" to one more than the total images/links

  document.getElementById('ftbox'+count).style.display='none';

}



function showftbox(ftbox){

  document.getElementById(ftbox).style.display='block';

}
