// JavaScript Document

//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays, to add new items simply increment the number of items in the array, i.e., "images = new Array([current value + 1]);", and add the next image reference, i.e., "images[4] = ..."

images = new Array(2);

images[0] = "<a href = 'http://www.barninja.com/'><img src='images/ads/barninja.jpg' border='0' alt='Bar Ninja: evolution of bartending' /></a>";

images[3] = "<a href = 'http://www.ltzllc.com/'><img src='images/ads/ltzllc.jpg' border='0' alt='LTZ: mobile applications' /></a>";

images[2] = "<a href = 'http://www.buywake.com/GRSv2/'><img src='images/ads/BW-empireWake.jpg' border='0' alt='Buy Wake' /></a>";

images[1] = "<a href = 'http://www.buywake.com'><img src='images/ads/BW-empire.jpg' border='0' alt='Buy Wake' /></a>";


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

document.write(images[index]);

//done

