//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(18);
    quotes[0] = '<img src = "../pictures/stamp1.jpg" width = 250>'
                +'<p>Stamp 1: Another collage theme trying out a mixture of stamping ideas';
    quotes[1] = '<img src = "../pictures/stamp2.jpg" width = 250>'
                +'<p>Stamp 2: A simple card using crack and peel. I think I need more '
                +'practice. ';
    quotes[2] = '<img src = "../pictures/stamp3.jpg" width = 250>'
                +'<p>Stamp 3: Working on a theme this version of the card is embellished '
                +' with a peel-off tulip';
    quotes[3] = '<img src = "../pictures/stamp4.jpg" width = 250>'
                +'<p>Stamp 4: The butterfly is added by stamping on vellum to give a light '
                +' airy feel.';               
    quotes[4] = '<img src = "../pictures/stamp5.jpg" width = 250>'
                +'<p>Stamp 5: This is definitely my type of card. Simple but colorful.';
    quotes[5] = '<img src = "../pictures/stamp6.jpg" width = 250>'
                +'<p>Stamp 6: Not exactly stamped. I used a scrap of background card inside'
                +' the apperture of this card.';
    quotes[6] = '<img src = "../pictures/stamp7.jpg" width = 250>'
                +'<p>Stamp 7: Three butterflys stamped on vellum and set on a spiders web '
                +' effect paper.';
    quotes[7] = '<img src = "../pictures/stamp8.jpg" width = 250>'
                +'<p>Stamp 8: I stamped this too close to the edge of the acetate so was '
                +'forced to cut it out.';
    quotes[8] = '<img src = "../pictures/stamp9.jpg" width = 250>'
                +'<p>Stamp 9: Another Christmas cracker. This one will stand up as a '
                +'place marker.';
    quotes[9] = '<img src = "../pictures/stamp10.jpg" width = 250>'
                +'<p>Stamp 10: A really simple idea for a Christmas card. The snowflakes '
                +'are stamped all over the card before it is folded and cut. Then three '
                +'Christmas trees are embossed separately and added.';
    quotes[10] = '<img src = "../pictures/stamp11.jpg" width = 250>'
                +'<p>Stamp 11: I collect elephants so just had to stamp one.';               
    quotes[11] = '<img src = "../pictures/stamp12.jpg" width = 250>'
                +'<p>Stamp 12: This is stamped on acetate then glitter added behind before'
                +' being mounted on marble paper and framed.';
    quotes[12] = '<img src = "../pictures/stamp13.jpg" width = 250>'
                +'<p>Stamp 13: Find something new and use it. I love this fine corrugated '
                +'type of card. Unfortunately you can not see the corrugated card very '
                +' well on this picture.';
    quotes[13] = '<img src = "../pictures/stamp14.jpg" width = 250>'
                +'<p>Stamp 14: As you can see this embossing did not works as well as I '
                +'had hoped but it did give an interesting effect.';
    quotes[14] = '<img src = "../pictures/stamp15.jpg" width = 250>'
                +'<p>Stamp 15: I did enjoy making this collage card but it is not really '
                +'my scene. I prefer the simpler cards.';
    quotes[15] = '<img src = "../pictures/stamp16.jpg" width = 250>'
                +'<p>Stamp 16: This is a nice simple fun card for a birthday.';
    quotes[16] = '<img src = "../pictures/stamp17.jpg" width = 250>'
                +'<p>Stamp 17: All I need here is a young child to send this too. My'
                +' children are all grown up';
    quotes[17] = '<img src = "../pictures/stamp18.jpg" width = 250>'
                +'<p>Stamp 18: A simple pass par tout card. The Happy Birthday is not '
                +'stamped well but believe me the one under the bows was definitley '
                +'worse!';               
  //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 = 18*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>");
     }
