//Javascript Created by Computerhope http://www.computerhope.com
//store the quotations in arrays

images = new Array(5);
images[0] = "<img src='../images/logo_butterfly.gif' alt='True Image Publishing' border='0'>";
images[1] = "<img src='../images/logo_feather.gif' alt='True Image Publishing' border='0'>";
images[2] = "<img src='../images/logo_leaf.gif' alt='True Image Publishing' border='0'>";
images[3] = "<img src='../images/logo_stones.gif' alt='True Image Publishing' border='0'>";
images[4] = "<img src='../images/logo_sunflower.gif' alt='True Image Publishing' border='0'>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);