

//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(28);

 


index1 = Math.floor(Math.random() * images.length);

index2 = Math.floor(Math.random() * images.length);

while (index2 == index1) {
index2 = Math.floor(Math.random() * images.length);
}

index3 = Math.floor(Math.random() * images.length);

while ((index3 == index2) || (index3 == index1)) {
index3 = Math.floor(Math.random() * images.length);
} 
 
index4 = Math.floor(Math.random() * images.length); 

while ((index4 == index3) || (index4 == index2) || (index4 == index1)) {
index4 = Math.floor(Math.random() * images.length);
} 

index5 = Math.floor(Math.random() * images.length); 

while ((index5 == index4) || (index5 == index3) || (index5 == index2) || (index5 == index1)) {
index5 = Math.floor(Math.random() * images.length);
} 

document.write("<img src='images/home/" + index1 +"_s.jpg' alt='Fanfareorkest St.Caecilia Heemskerk' width='139px' height='85px'>" + "\n");
document.write("<img src='images/home/" + index2 +"_s.jpg' alt='Fanfareorkest St.Caecilia Heemskerk' width='139px' height='85px'>" + "\n");
document.write("<img src='images/home/" + index3 +"_s.jpg' alt='Fanfareorkest St.Caecilia Heemskerk' width='139px' height='85px'>" + "\n");
document.write("<img src='images/home/" + index4 +"_s.jpg' alt='Fanfareorkest St.Caecilia Heemskerk' width='139px' height='85px'>" + "\n");
document.write("<img src='images/home/" + index5 +"_s.jpg' alt='MFanfareorkest St.Caecilia Heemskerk' width='139px' height='85px'>" + "\n");

 

 

