// JavaScript Document

//Javascript Created by Computerhope http://www.computerhope.com
//store the quotations in arrays




function RandomImage(){
images = new Array(2);
images[0] = "<img src='images/flyer1.jpg'  border='0' />";
images[1] = "<img src='images/flyer2.jpg'  border='1' />";





index = Math.floor(Math.random() * images.length);
document.write(images[index] + "\n");
}

