//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(26);
    quotes[0] = '<img src = "../pictures/egg1.jpg" width = 250>'
                +'<p>Egg 1: These eggs were made by one of my students using my designs'
                +'. Pat gave me permission to use the photographs she sent me.';
    quotes[1] = '<img src = "../pictures/egg2.jpg" width = 250>'
                +'<p>Egg 2:These eggs were made by one of my students using my designs'
                +'. Pat gave me permission to use the photographs she sent me.';
    quotes[2] = '<img src = "../pictures/egg3.jpg" width = 250>'
                +'<p>Egg 3:These eggs were made by one of my students using my designs'
                +'. Pat gave me permission to use the photographs she sent me.';
    quotes[3] = '<img src = "../pictures/egg4.jpg" width = 250>'
                +'<p>Egg 4:These eggs were made by one of my students using my designs'
                +'. Pat gave me permission to use the photographs she sent me.';               
    quotes[4] = '<img src = "../pictures/egg5.jpg" width = 250>'
                +'<p>Egg 5:These eggs were made by one of my students using my designs'
                +'. Pat gave me permission to use the photographs she sent me.';
    quotes[5] = '<img src = "../pictures/egg6.jpg" width = 250>'
                +'<p>Egg 6: This emu egg is double hinged to give two opening sections.';
    quotes[6] = '<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[7] = '<img src = "../pictures/egg8.jpg" width = 250>'
                +'<p>Egg 8: This family of snow-people is made from a collection of eggs';
    quotes[8] = '<img src = "../pictures/egg9.jpg" width = 250>'
                +'<p>Egg 9: This emu egg has two openings to keep jewellry in. Unfortunatelly'
                +'the fairy on guard is asleep';
    quotes[9] = '<img src = "../pictures/egg10.jpg" width = 250>'
                +'<p>Egg 10: My son designed this flame egg for me.';               
    quotes[10] = '<img src = "../pictures/egg11.jpg" width = 250>'
                +'<p>Egg 11: Dyed no-hole pearls decorate the top of those eggs.';
    quotes[11] = '<img src = "../pictures/egg12.jpg" width = 250>'
                +'<p>Egg 12: This proved to very tricky as the egg was totally cut away'
                +' so that the gold scrolls support the top';
    quotes[12] = '<img src = "../pictures/egg13.jpg" width = 250>'
                +'<p>Egg 13: This turkey egg has been left its natural colour.';
    quotes[13] = '<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[14] = '<img src = "../pictures/egg15.jpg" width = 250>'
                +'<p>Egg 15: I finall manage a casousel which not only plays but the '
                +'horse do go round and round and up and down.';
    quotes[15] = '<img src = "../pictures/egg16.jpg" width = 250>'
                +'<p>Egg 16: All the poinsettia pieces were cut from other goose eggs';               
    quotes[16] = '<img src = "../pictures/egg17.jpg" width = 250>'
                +'<p>Egg 17: This is a really special egg for me as a wonderful friend'
                +'spent hours creating this princess with her unicorn';
    quotes[17] = '<img src = "../pictures/egg18.jpg" width = 250>'
                +'<p>Egg 18: Mother of Pearl covers this half door which open to show'
                +' a lady gathering fruit in her piney';
    quotes[18] = '<img src = "../pictures/egg19.jpg" width = 250>'
                +'<p>Egg 19: I really enjoyed creating this nest for these lovebirds.'
                +' The roses on the base are made from 4mm silk ribbon.';
    quotes[19] = '<img src = "../pictures/egg20.jpg" width = 250>'
                +'<p>Egg 20: Rynstones used with a cross stitch pattern decorate this '
                +'cut egg.';
    quotes[20] = '<img src = "../pictures/egg21.jpg" width = 250>'
                +'<p>Egg 21: Simple eggs using rynstones in cross stitch patterns';
    quotes[21] = '<img src = "../pictures/egg22.jpg" width = 250>'
                +'<p>Egg 22: The ladies dress is made from a guinea-fowl egg.';               
    quotes[22] = '<img src = "../pictures/egg23.jpg" width = 250>'
                +'<p>Egg 23: The area cut out in this egg allows you to hear the music '
                +'when the box inside is played.';
    quotes[23] = '<img src = "../pictures/egg24.jpg" width = 250>'
                +'<p>Egg 24: Crocheting cotton is used here to fill the turquoise scrolls';
    quotes[24] = '<img src = "../pictures/egg25.jpg" width = 250>'
                +'<p>Egg 25: A simple but popular casket. Scrolls are filled with no-hole'
                +' pearls and blue belss are transfers.';
    quotes[25] = '<img src = "../pictures/egg26.jpg" width = 250>'
                +'<p>Egg 26: This golden duck lives in his golden egg which lives inside'
                +' a golden goose-egg.';
  //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 = 26*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>");
     }
