// JavaScript Document//store the quotations in arraysimages = new Array(4);images[0] = "<a href = 'wallpaper.html'><img src='imidgs/customise-image1.jpg' alt='Customise Your Space' border='0'></a>";images[1] = "<a href = 'canvas-to-wall.html'><img src='imidgs/customise-image2.jpg' alt='Customise Your Space' border='0'></a>";images[2] = "<a href = 'canvases.html'><img src='imidgs/customise-image3.jpg' alt='Customise Your Space' border='0'></a>";images[3] = "<a href = 'wallpaper.html'><img src='imidgs/customise-image4.jpg' alt='Customise Your Space' border='0'></a>";images[4] = "<a href = 'canvas-to-wall.html'><img src='imidgs/customise-image5.jpg' alt='Customise Your Space' border='0'></a>";index = Math.floor(Math.random() * images.length);document.write(images[index]);//done