



function hidefac(){

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

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

}






function showfac(facs){

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

}