// JavaScript Document
//
// Type the number of images you are rotating.


NumberOfImagesToRotate = 8;

// Specify the first and last part of the image tag. 

FirstPart = '<img src="http://www.kinderhulp-togo.nl/Images/Randomlinks/Fotolinks';
LastPart = '.jpg"  >';

function printImageLinks() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write(FirstPart + r + LastPart);
}

