        /*  begins list of images to be used*/
        currentIndx=19;
        MyImages=new Array();
        MyImages[0]='../images/quotes/quote_1.gif';
        MyImages[1]='../images/quotes/quote_2.gif';
        MyImages[2]='../images/quotes/quote_3.gif';
		MyImages[3]='../images/quotes/quote_4.gif';
		MyImages[4]='../images/quotes/quote_5.gif';
		MyImages[5]='../images/quotes/quote_6.gif';
		MyImages[6]='../images/quotes/quote_7.gif';
		MyImages[7]='../images/quotes/quote_8.gif';
		MyImages[8]='../images/quotes/quote_9.gif';
		MyImages[9]='../images/quotes/quote_10.gif';
		MyImages[10]='../images/quotes/quote_11.gif';
		MyImages[11]='../images/quotes/quote_12.gif';
        MyImages[12]='../images/quotes/quote_13.gif';
		MyImages[13]='../images/quotes/quote_14.gif';
		MyImages[14]='../images/quotes/quote_15.gif';
		MyImages[15]='../images/quotes/quote_16.gif';
		MyImages[16]='../images/quotes/quote_17.gif';
		MyImages[17]='../images/quotes/quote_18.gif';
		MyImages[18]='../images/quotes/quote_19.gif';
        /*  now we preload the images  */
        imagesPreloaded = new Array(19)
        for (var i = 0; i < MyImages.length ; i++)
        {
                imagesPreloaded[i] = new Image(140,95)
                imagesPreloaded[i].src=MyImages[i]
        }
        /*  this function loads a random image  */
        function newImage() {
        currentIndx=Math.round(Math.random()*18)
        document.quoteImage.src=imagesPreloaded[currentIndx].src
        }

