<!-- Begin Random Image
var rand2 = 0;
var useRand2 = 0;

mottos = new Array;
mottos[1] = new Image();
mottos[1].src = "images/motto_1.gif";
mottos[2] = new Image();
mottos[2].src = "images/motto_2.gif";
mottos[3] = new Image();
mottos[3].src = "images/motto_3.gif";
mottos[4] = new Image();
mottos[4].src = "images/motto_4.gif";
mottos[5] = new Image();
mottos[5].src = "images/motto_5.gif";
mottos[6] = new Image();
mottos[6].src = "images/motto_6.gif";
mottos[7] = new Image();
mottos[7].src = "images/motto_7.gif";
mottos[8] = new Image();
mottos[8].src = "images/motto_8.gif";

function swapmotto() {
var imgnum2 = mottos.length - 1;
do {
var randnum2 = Math.random();
rand2 = Math.round((imgnum2 - 1) * randnum2) + 1;
} while (rand2 == useRand2);
useRand2 = rand2;
document.randimg2.src = mottos[useRand2].src;
}
//  End -->