function image() {
};
image = new image();
number = 0;

// imageArray
image[number++] = "<img src='images/product_shots/prod1.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
image[number++] = "<img src='images/product_shots/prod2.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
image[number++] = "<img src='images/product_shots/prod3.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
image[number++] = "<img src='images/product_shots/prod4.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
image[number++] = "<img src='images/product_shots/prod5.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
image[number++] = "<img src='images/product_shots/prod6.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
image[number++] = "<img src='images/product_shots/prod8.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
image[number++] = "<img src='images/product_shots/prod9.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
image[number++] = "<img src='images/product_shots/prod10.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
image[number++] = "<img src='images/product_shots/prod11.jpg' height='461' width='206' alt='Bond-a-Band Product Range'>"
// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(image[increment]);


