function ClearEverything(){
  for (count=0; count<13; count+=1) // set "count" to one more than the total images/links
  document.getElementById('Bear'+count).style.display='none';
}

function ShowBear(Bear){
  document.getElementById(Bear).style.display='block';
}


