//If you can see this file then something has gone wrong with your browser.
//This is the quotes file for christmas decorations.

    var quotes = new Array(22);
    quotes[0] = '<img src = "../pictures/christ3.jpg" width = 250>'
                +'<p>Christmas 3: Another way of using polystyrene shapes. These bells '
                +'are decorated with transfers and glitter. I only used twelve bells on '
                +'a six foot tree but they looked fabulous.';
    quotes[1] = '<img src = "../pictures/christ4.jpg" width = 250>'
                +'<p>Christmas 4: Another way of using polystyrene shapes. These bells '
                +'are decorated with transfers and glitter. I only used twelve bells on '
                +'a six foot tree but they looked fabulous.';
    quotes[2] = '<img src = "../pictures/christ5.jpg" width = 250>'
                +'<p>Christmas 5: Another way of using polystyrene shapes. These bells '
                +'are decorated with transfers and glitter. I only used twelve bells on '
                +'a six foot tree but they looked fabulous.';
    quotes[3] = '<img src = "../pictures/christ6.jpg" width = 250>'
                +'<p>Christmas 6: This black and gold box is painted using stencils to '
                +'produce the snowflake pattern on the lid but I used lace round the edge';               
    quotes[4] = '<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[5] = '<img src = "../pictures/christ8.jpg" width = 250>'
                +'<p>Christmas 8: Another plain box decorated with sequin waste and ribbons.'
                +' Much nicer for enclosing a gift.';
    quotes[6] = '<img src = "../pictures/christ9.jpg" width = 250>'
                +'<p>Christmas 9: This is just a shoe box covered with wrapping paper and '
                +' a bow to finish it off.';
    quotes[7] = '<img src = "../pictures/christ10.jpg" width = 250>'
                +'<p>Christmas 10: This large ball is made from polystyrene and covered in '
                +'fabric. A gift can be hidden inside the ball.';
    quotes[8] = '<img src = "../pictures/christ11.jpg" width = 250>'
                +'<p>Christmas 11: Like the balls these rings are made of polystyrene '
                +'covered in fabric.';
    quotes[9] = '<img src = "../pictures/christ12.jpg" width = 250>'
                +'<p>Christmas 12: This plain box is painted black on the base but the lid '
                +'is painted white. Then a snowflake template is placed on the top before '
                +'it is painted black.';
    quotes[10] = '<img src = "../pictures/christ13.jpg" width = 250>'
                +'<p>Christmas 13: These tree decorations are polystyrene balls covered '
                +'in fabric';               
    quotes[11] = '<img src = "../pictures/christ14.jpg" width = 250>'
                +'<p>Christmas 14: These tree decorations are polystyrene balls covered '
                +'in fabric';        
    quotes[12] = '<img src = "../pictures/christ15.jpg" width = 250>'
                +'<p>Christmas 15: This lacy cracker could have flowers or bows added to '
                +'it for extra detail or simply left as it is. ';
    quotes[13] = '<img src = "../pictures/christ16.jpg" width = 250>'
                +'<p>Christmas 16: Simple cracker made from gold crepe paper and tartan '
                +'ribbons.';
    quotes[14] = '<img src = "../pictures/christ17.jpg" width = 250>'
                +'<p>Christmas 17: Bags can be made to give gifts in or, like these, '
                +' pyramid boxes hung on the tree.';
    quotes[15] = '<img src = "../pictures/christ18.jpg" width = 250>'
                +'<p>Christmas 18: Take a simple cracker and decorate for a party with the '
                +'children.';
    quotes[16] = '<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[17] = '<img src = "../pictures/christ21.jpg" width = 250>'
                +'<p>Christmas 21: I love making bows as they just add that touch extra '
                +' at Christmas.';
    quotes[18] = '<img src = "../pictures/christ22.jpg" width = 250>'
                +'<p>Christmas 22: I love making bows as they just add that touch extra '
                +' at Christmas.';
    quotes[19] = '<img src = "../pictures/christ19.jpg" width = 250>'
                +'<p>Christmas 19: These Santas are very simple to do and can be used to '
                +' conceal small gifts inside the hollow tubes which form the faces.';
    quotes[20] = '<img src = "../pictures/christ23.jpg" width = 250>'
                +'<p>Christmas 23: The christmas tree on this card was stenciled onto a'
                +' piece of satin then mounted in the card with padding behind.';
    quotes[21] = '<img src = "../pictures/christ24.jpg" width = 250>'
                +'<p>Christmas 24: Another padded effect using a scrap of christmas fabric.';
  //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 = 22*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>");
     }
