//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(12);
    quotes[0] = '<img src = "pictures/egg7.jpg" width = 250>'
                +'<p>Egg 7: This egg was covered in gold leaf. The three doors open when '
                +'the top is lifted';
    quotes[1] = '<img src = "pictures/egg10.jpg" width = 250>'
                +'<p>Egg 10: My son designed this flame egg for me.';   
    quotes[2] = '<img src = "pictures/egg14.jpg" width = 250>'
                +'<p>Egg 14: I love all the different things you can use on an egg. This'
                +' cherub is a peel-off sticker.';
    quotes[3] = '<img src = "pictures/christ7.jpg" width = 250>'
                +'<p>Christmas 7: This large ball is made from polystyrene and covered in '
                +'fabric. A gift can be hidden inside the ball.';
    quotes[4] = '<img src = "pictures/christ20.jpg" width = 250>'
                +'<p>Christmas 20: Christmas just has to have crackers. Large ones like this can hold'
                +' really special gifts.';
    quotes[5] = '<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[6] = '<img src = "pictures/embroid4.jpg" width = 250>'
                +'<p>Embroidery 4: I enjoyed using all the different colours on this card.';  
    quotes[7] = '<img src = "pictures/parch1.jpg" width = 250>'
                +'<p>Parchment 1: Although very time consuming the final effect of all this'
                +' lace work was well worth the effort.';
    quotes[8] = '<img src = "pictures/parch4.jpg" width = 250>'
                +'<p>Parchment 4: Here, I dorsoed on the front of the card before embossing'
                +'. The pattern on the edge was done with the three needle tool and then'
                +' cut. In the scallops I used the flower tool.';      
    quotes[9] = '<img src = "pictures/parch12.jpg" width = 250>'
                +'<p>Parchment 12:One of my first attempts. It is from the book'
                +'<i>Cards made from parchment paper</i>';
    quotes[10] = '<img src = "pictures/parch29.jpg" width = 250>'
                +'<p>Parchment 29: A variety of simple cards. Done with embossing '
                +' these cards are backed on red paper for a bright effect.'
    quotes[11] = '<img src = "pictures/tea1.jpg" width = 250>'
                +'<p>Teabag 1: I love the way that this fold gave obvious squares, so I'
                +' had to add the hearts.';
  //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 = 12*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>");
     }
