var theImages = new Array();

theImages[0]  = 'immagini/b_home_on.jpg';
theImages[1]  = 'immagini/b_animali_on.jpg';
theImages[2]  = 'immagini/b_camere_on.jpg';
theImages[3]  = 'immagini/b_contatti_on.jpg';
theImages[4]  = 'immagini/b_cucina_on.jpg';
theImages[5]  = 'immagini/b_dicono_on.jpg';
theImages[6]  = 'immagini/b_didattica_on.jpg';
theImages[7]  = 'immagini/b_dove_on.jpg';
theImages[8]  = 'immagini/b_eventi_on.jpg';
theImages[9]  = 'immagini/b_prezzi_on.jpg';
theImages[10] = 'immagini/b_servizi_on.jpg';

var i = 0;
var p = theImages.length;
var preBuffer = new Array();
for (i = 0; i < p; i++)
{
  preBuffer[i] = new Image();
  preBuffer[i].src = theImages[i];
}