// JavaScript Document


// IMAGE IN INTRO BLOCK (HOMEPAGE)
// Type the number of images you are rotating.

NumberOfImagesToRotate1 = 14;

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

FirstPart1 = '<img src="/site-tools/img/changeout/homepage/homepage-image';
LastPart1 = '.jpg" height="118" width="345" alt="">';

function randomImage1() {
var r1 = Math.ceil(Math.random() * NumberOfImagesToRotate1);
document.write(FirstPart1 + r1 + LastPart1);
}


// IMAGE IN INTRO BLOCK (ETS LANDING PAGE)
// Type the number of images you are rotating.

NumberOfImagesToRotate2 = 10;

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

FirstPart2 = '<img src="/site-tools/img/changeout/ets-landing/ets-image';
LastPart2 = '.jpg" height="118" width="345" alt="">';

function randomImage2() {
var r2 = Math.ceil(Math.random() * NumberOfImagesToRotate2);
document.write(FirstPart2 + r2 + LastPart2);
}

