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

images = new Array(3);

images[0] = "<img src='http://www.commonoutlook.com/wp-content/themes/commonoutlook2/img/quote-home.jpg' alt='' width='800' height='115' />";

images[1] = "<img src='http://www.commonoutlook.com/wp-content/themes/commonoutlook2/img/quote-home2.jpg' alt='' width='800' height='115' />";

images[2] = "<img src='http://www.commonoutlook.com/wp-content/themes/commonoutlook2/img/quote-home3.jpg' alt='' width='800' height='115' />";

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

document.write(images[index]);
