var theImages = new Array();

theImages[0]  = 'immagini/b_promozioni_on.jpg';
theImages[1]  = 'immagini/b_weekend_on.jpg';
theImages[2]  = 'immagini/b_settimana_on.jpg';
theImages[3]  = 'immagini/b_offerte_fam_on.jpg';
theImages[4]  = 'immagini/b_hotel_on.jpg';
theImages[5]  = 'immagini/b_camere_on.jpg';
theImages[6]  = 'immagini/b_ristorante_on.jpg';
theImages[7]  = 'immagini/b_piscina_on.jpg';
theImages[8]  = 'immagini/b_dove_siamo_on.jpg';
theImages[9]  = 'immagini/b_bike_hotel_on.jpg';
theImages[10] = 'immagini/b_dintorni_on.jpg';
theImages[11] = 'immagini/b_prezzi_on.jpg';
theImages[12] = 'immagini/b_terme_on.jpg';
/*
theImages[13]  = 'immagini/header.jpg';
theImages[14]  = 'immagini/b_promozioni_off.jpg';
theImages[15]  = 'immagini/b_weekend_off.jpg';
theImages[16]  = 'immagini/b_settimana_off.jpg';
theImages[17]  = 'immagini/b_offerte_fam_off.jpg';
theImages[18] = 'immagini/b_hotel_off.jpg';
theImages[19] = 'immagini/b_camere_off.jpg';
theImages[20] = 'immagini/b_ristorante_off.jpg';
theImages[21] = 'immagini/b_piscina_off.jpg';
theImages[22] = 'immagini/b_dove_siamo_off.jpg';
theImages[23] = 'immagini/b_bike_hotel_off.jpg';
theImages[24] = 'immagini/b_dintorni_off.jpg';
theImages[25] = 'immagini/b_prezzi_off.jpg';
theImages[26] = 'immagini/b_terme_off.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];
}