//store the quotations in arrays

images = new Array(8);

images[0] = "<img src='/images/ui_longPhoto_1.jpg' width='966' height='173' />";

images[1] = "<img src='/images/ui_longPhoto_2.jpg' width='966' height='173' />";

images[2] = "<img src='/images/ui_longPhoto_3.jpg' width='966' height='173' />";

images[3] = "<img src='/images/ui_longPhoto_4.jpg' width='966' height='173' />";

images[4] = "<img src='/images/ui_longPhoto_5.jpg' width='966' height='173' />";

images[5] = "<img src='/images/ui_longPhoto_6.jpg' width='966' height='173' />";

images[6] = "<img src='/images/ui_longPhoto_7.jpg' width='966' height='173' />";

images[7] = "<img src='/images/ui_longPhoto_8.jpg' width='966' height='173' />";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done


