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

//store the quotations in arrays

images = new Array(2);

images[0] = "<a href = advertisers_list.html> <img src='logos/asy.gif' border= no border alt= aircooledasylum></a>";

images[1] = "<a href = advertisers_list2.html> <img src='logos/asap.jpg' border= no border alt= ASAP Electrical></a>";

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

document.write(images[index]);

//done