// JavaScript Document
function sacafoto(n){
  switch (n){ 
  case 0: 
   return "foto_centro00.jpg"; 
  break; 
  case 1: 
   return "foto_centro01.jpg";
  break;
  case 2: 
   return "foto_centro02.jpg";
  break; 
  case 3: 
   return "foto_centro03.jpg";
  break;
  case 4: 
   return "foto_centro04.jpg";
  break;
  default: 
   return "foto_centro05.jpg";
  }
}
