// JavaScript Document
var images=new Array();
images[0]="_sharedimg/home/quote_001.gif";
images[1]="_sharedimg/home/quote_002.gif";
images[2]="_sharedimg/home/quote_003.gif";
images[3]="_sharedimg/home/quote_004.gif";
images[4]="_sharedimg/home/quote_005.gif";
images[5]="_sharedimg/home/quote_006.gif";
images[6]="_sharedimg/home/quote_007.gif";

function randomimage() {
var i=Math.floor(Math.random()*images.length);
document.getElementById("random").src=images[i];
}