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


NumberOfImagesToRotateRechts = 10;

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

FirstPartRechts = '<img src="http://www.kinderhulp-togo.nl/Images/Randomrechts/Fotorechts';
LastPartRechts = '.jpg" >';

function printImageRechts() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotateRechts);
document.write(FirstPartRechts + r + LastPartRechts);
}

