//This file contains the Various Quotes needed for the page.
//Quotes1: Is the first file for KUWB military history
//This is a generic version. In order to use it simply fill in the array below
//add a tag calling the file on your page and then run the quote function at the
//bottom
    var quotes = new Array(7);
    quotes[0] = '<img src = "../pictures/embroid1.jpg" width = 250>'
                +'<p>Embroidery 1: A design from Card Inspirations was my first attempt'
                +' card embroidery';
    quotes[1] = '<img src = "../pictures/embroid2.jpg" width = 250>'
                +'<p>Embroidery 2: This one was done by my son and I think it needs'
                +' something in the middle';
    quotes[2] = '<img src = "../pictures/embroid3.jpg" width = 250>'
                +'<p>Embroidery 3: This pattern was inspired by the recent eclipse. '
                +'The pattern is available on <a href = "../embroider/eclipse.htm">'
                +'my page</a>.';
    quotes[3] = '<img src = "../pictures/embroid4.jpg" width = 250>'
                +'<p>Embroidery 4: I enjoyed using all the different colours on this card.';               
    quotes[4] = '<img src = "../pictures/embroid5.jpg" width = 250>'
                +'<p>Embroidery 5: Had to think of a card suitable for a man, hence the'
                +' boat';
    quotes[5] = '<img src = "../pictures/embroid6.jpg" width = 250>'
                +'<p>Embroidery 6: This is my sort of thing, I just love geometric'
                +' patterns';
    quotes[6] = '<img src = "../pictures/embroid7.jpg" width = 250>'
                +'<p>Embroidery 7: I liked this design by Helga Dharmpaul. It was'
                +' published by Craft Creations magazine. The have a web site at'
                +' <a href = "http://www.craftcreations.com">www.craftcreations.com</a>.';
  //This function is run by the package at the top to present the quote
  //The number should be 1 greater than the highest array
    function quoting()
     {
      var y = 7*Math.random();
      y = Math.floor(y);
     document.write(quotes[y]);
     }
  //This is the master function it creates the block which is then 
  //used by the file which calls quote and this file
    function quote()
     {
      document.write("<table border = 0 width = 100% cellspacing = 0>");
      document.write("<tr><td align = center><b>")
      quoting();
      document.write("</b></td></tr></table>");
     }
