// Create an array to hold the product details
arrCatalog = new Array();

// A product is defined as follows:
//   var x = new Product(<id>,<title>,<price>);

// It can be given a description:
//   x.setDescription(<description>);
// To include a " within the description, use \"
// The description is blank by default

// It can be given one thumbnail and multiple full-size images:
//   x.setThumbnail(<image file path>,<width>,<height>);
//   x.addImage(<image file path>,<width>,<height>);
// The maximum height or width for a thumbnail is 150
// The maximum height or width for a full-size image is 400
// If this limits are exceeded, the code will scale the sizes
// down which will impair the quality when displayed in the page.

// A product may have options associated with it.
// To add a free-text option:
//   x.addOption(<option type>);
// To add a list of options (from which the user must pick one):
//   x.addOption(<option type>,<option value 1>);
//   x.addOption(<option type>,<option value 2>);

// Each product must be placed in the array arrCatalog using its id:
//   arrCatalog[<id>] = x;

// Each product also has a type.  This determines its postage options
// and the cost of postage.  The possible values are:
// CARD, BOX, ALBUM, WOOD, GLASS and GLASSBOX
// and the default value is CARD.  To set a different type:
//   x.setType(ALBUM);

// A product may be marked as new:
//   x.markAsNew();

// Here is an example.  There are two card options,
// a pick-list of colours and a free-text greeting
var x =new Product("25","Iris rose",2.80);
x.setDescription("Iris folded paper in rose design, mounted on card. Please specify colours (red, gold/yellow, pink, pink/purple). A6. \nCheck other pictures available.");
x.setThumbnail("photos/thumbnails/DSC_3505.jpg",106,150);
x.addImage("photos/DSC_3505.jpg",229,325);
x.addImage("photos/DSC_3506.jpg",230,325);
x.addImage("photos/DSC_3507.jpg",231,325);
x.addImage("photos/P6170034.jpg",227,325);
x.addImage("photos/pic 002.jpg",232,325);
x.addOption("Colours","Red");
x.addOption("Colours","Gold/yellow");
x.addOption("Colours","Pink");
x.addOption("Colours","Pink/purple");
x.addOption("Optional greeting");
// x.markAsNew();
arrCatalog["25"] = x;

// You could put the product straight into the array.
// This example also has multiple photos.
arrCatalog["18"]=new Product("18","Plain wax A6",1.50);
arrCatalog["18"].setDescription("Melted wax design. Please specify colour. Check other pictures available. A6. \nNo 2 will be the same.");
arrCatalog["18"].setThumbnail("photos/thumbnails/P6170045.jpg",105,150);
arrCatalog["18"].addImage("photos/P6170045.jpg",229,325);
arrCatalog["18"].addImage("photos/waxblue.jpg",219,325);
arrCatalog["18"].addImage("photos/waxred.jpg",214,325);
arrCatalog["18"].addImage("photos/waxblack.jpg",219,325);
arrCatalog["18"].addImage("photos/waxbluegreen.jpg",229,325);
arrCatalog["18"].addImage("photos/waxpaleorange.jpg",227,325);
arrCatalog["18"].addOption("Colour","Green");
arrCatalog["18"].addOption("Colour","Blue");
arrCatalog["18"].addOption("Colour","Red");
arrCatalog["18"].addOption("Colour","Black");
arrCatalog["18"].addOption("Colour","Blue/green");
arrCatalog["18"].addOption("Colour","Pale orange");

// The following code was (mostly) auto-generated from the data
// on the old site.  It assumes the photos are all in a folder
// called photos.  The Ids used should all correspond to those on
// the old site.

arrCatalog["1"]=new Product("1","Anniversary Bells",2.50);
arrCatalog["1"].setDescription("Anniversary Bells, hand sewn. A6.");
arrCatalog["1"].setThumbnail("photos/thumbnails/P6170039.JPG",150,106);
arrCatalog["1"].addImage("photos/P6170039.JPG",325,229);
arrCatalog["1"].addOption("Please specify number");

arrCatalog["3"]=new Product("3","Wedding postcard Anniv",2.00);
arrCatalog["3"].setDescription("Wedding postcard with lace border. A6. See other pictures available");
arrCatalog["3"].setThumbnail("photos/thumbnails/P6170089.JPG",102,150);
arrCatalog["3"].addImage("photos/P6170089.JPG",219,325);
arrCatalog["3"].addOption("Greeting","Happy Anniversary");
arrCatalog["3"].addOption("Greeting","Congratulations");

arrCatalog["4"]=new Product("4","Sympathy",1.75);
arrCatalog["4"].setDescription("Tulip bouquet, with subtle colours and pearlescent wax background. Greeting inside reads With Sympathy. 5\" square.");
arrCatalog["4"].setThumbnail("photos/thumbnails/P6170076.JPG",143,150);
arrCatalog["4"].addImage("photos/P6170076.JPG",344,250);

arrCatalog["6"]=new Product("6","Silver Anniversary",2.25);
arrCatalog["6"].setDescription("Silver heart embossed with small silver dots, mounted above a wedding verse. Silver Wedding sticker mounted in the centre of the heart, with a '25' beneath. Lilac handmade roses to finish. \nSmall circular love token with white ribbon, and a white ribbon strip down the spine of the card completes the design. 5\" square.");
arrCatalog["6"].setThumbnail("photos/thumbnails/New Cards 005.jpg",150,149);
arrCatalog["6"].addImage("photos/New Cards 005.jpg",350,348);

arrCatalog["7"]=new Product("7","Rosebud circle",2.00);
arrCatalog["7"].setDescription("Circular rose boquet, surrounding pressed rosebud. Specify number. 4\" square.");
arrCatalog["7"].setThumbnail("photos/thumbnails/P6170010.JPG",120,150);
arrCatalog["7"].addImage("photos/P6170010.JPG",246,300);
arrCatalog["7"].addOption("Please specify number");

arrCatalog["8"]=new Product("8","Heart with bow",2.00);
arrCatalog["8"].setDescription("Heart with matching bow or ribbon bouquet. Matching colour strip of edging paper can be added. A6. \nCheck other pictures available.");
arrCatalog["8"].setThumbnail("photos/thumbnails/P6170021.JPG",102,150);
arrCatalog["8"].addImage("photos/P6170021.JPG",222,325);
arrCatalog["8"].addImage("photos/P6170020.JPG",220,325);
arrCatalog["8"].addImage("photos/P6170029.JPG",227,325);
arrCatalog["8"].addImage("photos/DSC_3504.jpg",219,325);
arrCatalog["8"].addOption("Colour","Burgundy");
arrCatalog["8"].addOption("Colour","Cream");
arrCatalog["8"].addOption("Option","Simple bow");
arrCatalog["8"].addOption("Option","Ribbon bouquet");
arrCatalog["8"].addOption("Edging","Yes");
arrCatalog["8"].addOption("Edging","No");
arrCatalog["8"].addOption("Age (leave blank for None)");

arrCatalog["9"]=new Product("9","Hearts with mesh",2.25);
arrCatalog["9"].setDescription("Punched and padded hearts, ribbon flower bouquet and silver mesh. Note: Although similar, the mesh may be a different material and the large heart may be a different colour or size from that shown. A6");
arrCatalog["9"].setThumbnail("photos/thumbnails/P6170023.JPG",110,150);
arrCatalog["9"].addImage("photos/P6170023.JPG",237,325);

arrCatalog["10"]=new Product("10","Hearts with glitter",2.25);
arrCatalog["10"].setDescription("Pearlised effect card, 2 punched hearts, bow and glitter edging. Mounted on lilac paper with a delicate floral design. A6");
arrCatalog["10"].setThumbnail("photos/thumbnails/P6170030.JPG",150,100);
arrCatalog["10"].addImage("photos/P6170030.JPG",325,218);

arrCatalog["11"]=new Product("11","Decoupage clown",2.25);
arrCatalog["11"].setDescription("Decoupage clown, built up using 4 layers. Mounted on matching card. A6.");
arrCatalog["11"].setThumbnail("photos/thumbnails/clown.jpg",106,150);
arrCatalog["11"].addImage("photos/clown.jpg",222,325);

arrCatalog["12"]=new Product("12","Clown print",1.50);
arrCatalog["12"].setDescription("Clown picture mounted on pale pastel card - print and colour of backing card may vary. 5\" square.");
arrCatalog["12"].setThumbnail("photos/thumbnails/clown2.jpg",150,150);
arrCatalog["12"].addImage("photos/clown2.jpg",346,350);

arrCatalog["13"]=new Product("13","Glitter butterfly",3.00);
arrCatalog["13"].setDescription("Glitter Butterfly, mounted on card and suede paper. 5\" sq. \nNo 2 cards will be the same.");
arrCatalog["13"].setThumbnail("photos/thumbnails/cards 004.jpg",150,150);
arrCatalog["13"].addImage("photos/cards 004.jpg",350,350);
arrCatalog["13"].addOption("Colour","Pink/Burgundy");
arrCatalog["13"].addOption("Colour","Black/Gold");
arrCatalog["13"].addOption("Colour","Green/Gold");
arrCatalog["13"].addOption("Colour","Purples");
arrCatalog["13"].addOption("Colour","Blues");
arrCatalog["13"].addOption("Colour","Yellow/Brown");

arrCatalog["14"]=new Product("14","Glitter medallion stamp",3.00);
arrCatalog["14"].setDescription("Glitter heart and flower design, built up of 5 layers (each smaller than the last). Coloured with shades of co-ordinating glitter. Small gem mounted in the centre. Double mounted on matching card and suede paper. 5\" sq. \nNo 2 cards will be the same.");
arrCatalog["14"].setThumbnail("photos/thumbnails/cards 010.jpg",150,147);
arrCatalog["14"].addImage("photos/cards 010.jpg",350,342);
arrCatalog["14"].addOption("Colour","Pink/Burgundy");
arrCatalog["14"].addOption("Colour","Black/Gold");
arrCatalog["14"].addOption("Colour","Green/Gold");
arrCatalog["14"].addOption("Colour","Purples");
arrCatalog["14"].addOption("Colour","Blues");
arrCatalog["14"].addOption("Colour","Yellow/Brown");

arrCatalog["15"]=new Product("15","3 flowers in windows",2.50);
arrCatalog["15"].setDescription("3 pressed flowers, each mounted in clear plastic windows. 6x3\". \nCheck other pictures available.");
arrCatalog["15"].setThumbnail("photos/thumbnails/cards 026.jpg",58,150);
arrCatalog["15"].addImage("photos/cards 026.jpg",144,375);
arrCatalog["15"].addImage("photos/cards 023.jpg",147,375);
arrCatalog["15"].addImage("photos/cards 041.jpg",152,375);
arrCatalog["15"].addImage("photos/P6170026.JPG",146,375);
arrCatalog["15"].addOption("Flower colours","Pale pink/White");
arrCatalog["15"].addOption("Flower colours","Pale pink/Dark pink");
arrCatalog["15"].addOption("Flower colours","Red/White");
arrCatalog["15"].addOption("Age (Optional)");

arrCatalog["16"]=new Product("16","Long daisy chain",1.25);
arrCatalog["16"].setDescription("Daisy and heart chain, with 3 individual daisies. 6x3\". \nCheck other pictures available.");
arrCatalog["16"].setThumbnail("photos/thumbnails/P6170081.JPG",66,150);
arrCatalog["16"].addImage("photos/P6170081.JPG",144,375);
arrCatalog["16"].addImage("photos/Cards 024.jpg",143,375);
arrCatalog["16"].addOption("Colour","Pastel");
arrCatalog["16"].addOption("Colour","Dark");

arrCatalog["17"]=new Product("17","Friends with verse",2.50);
arrCatalog["17"].setDescription("Friends verse with pressed flower. Please specify white or cream. 6x3\"");
arrCatalog["17"].setThumbnail("photos/thumbnails/cards 080.jpg",58,150);
arrCatalog["17"].addImage("photos/P6170024.JPG",154,375);
arrCatalog["17"].addImage("photos/cards 080.jpg",145,375);
arrCatalog["17"].addOption("Colour","Cream/Pink");
arrCatalog["17"].addOption("Colour","White/Pink");

arrCatalog["19"]=new Product("19","Rose inks",2.00);
arrCatalog["19"].setDescription("Blended inks with black rose design outline, mounted on co-ordinating handmade paper. A6. \nNo 2 will be the same.");
arrCatalog["19"].setThumbnail("photos/thumbnails/DSC_3489.jpg",102,150);
arrCatalog["19"].addImage("photos/DSC_3489.jpg",221,325);
arrCatalog["19"].addOption("Colour","Green/Blue");
arrCatalog["19"].addOption("Colour","Green/Yellow");
arrCatalog["19"].addOption("Colour","Pink/Yellow");
arrCatalog["19"].addOption("Colour","Pink/Blue");
arrCatalog["19"].addOption("Colour","Pastels");

arrCatalog["21"]=new Product("21","Mulberry white butterfly",1.50);
arrCatalog["21"].setDescription("Handmade paper with torn edges, beneath a delicate white butterfly. 5x4\". Colour of handmade paper may vary.");
arrCatalog["21"].setThumbnail("photos/thumbnails/DSC_3499.jpg",116,150);
arrCatalog["21"].addImage("photos/DSC_3499.jpg",250,325);
arrCatalog["21"].addOption("Background paper","Pink");
arrCatalog["21"].addOption("Background paper","Lilac");
arrCatalog["21"].addOption("Background paper","Burgundy");
arrCatalog["21"].addOption("Background paper","Green");

arrCatalog["22"]=new Product("22","Butterfly inks sm",1.50);
arrCatalog["22"].setDescription("Blended inks with butterfly, mounted on card.  Colours will vary. 5x4\". \nNo 2 will be the same.");
arrCatalog["22"].setThumbnail("photos/thumbnails/DSC_3500.jpg",150,114);
arrCatalog["22"].addImage("photos/DSC_3500.jpg",250,192);
arrCatalog["22"].addOption("Colour","Green/Blue");
arrCatalog["22"].addOption("Colour","Green/Yellow");
arrCatalog["22"].addOption("Colour","Pink/Yellow");
arrCatalog["22"].addOption("Colour","Pink/Blue");
arrCatalog["22"].addOption("Colour","Pastels");

arrCatalog["23"]=new Product("23","Butterfly inks ap",2.00);
arrCatalog["23"].setDescription("Blended inks with black overlay, in butterfly design. Check other pictures available. A6. \nNo 2 will be the same.");
arrCatalog["23"].setThumbnail("photos/thumbnails/DSC_3501.jpg",150,150);
arrCatalog["23"].addImage("photos/DSC_3501.jpg",300,299);
arrCatalog["23"].addImage("photos/DSC_3503.jpg",252,325);
arrCatalog["23"].addImage("photos/DSC_3496.jpg",226,325);
arrCatalog["23"].addImage("photos/DSC_3528.jpg",300,297);
arrCatalog["23"].addOption("Colour","Pink/Yellow");
arrCatalog["23"].addOption("Colour","Blue/Pink");
arrCatalog["23"].addOption("Colour","Blue/Green");
arrCatalog["23"].addOption("Colour","Yellow/Green");
arrCatalog["23"].addOption("Colour","Pastels");
arrCatalog["23"].addOption("Aperture","Square");
arrCatalog["23"].addOption("Aperture","Circle");

arrCatalog["24"]=new Product("24","Tulip inks circle aperture",2.00);
arrCatalog["24"].setDescription("Blended inks with black tulip design. Circle aperture. A6. \nNo 2 will be the same.");
arrCatalog["24"].setThumbnail("photos/thumbnails/DSC_3502.jpg",116,150);
arrCatalog["24"].addImage("photos/DSC_3502.jpg",232,300);
arrCatalog["24"].addImage("photos/DSC_3514.jpg",232,300);
arrCatalog["24"].addOption("Colour","Green/Blue");
arrCatalog["24"].addOption("Colour","Green/Yellow");
arrCatalog["24"].addOption("Colour","Pink/Yellow");
arrCatalog["24"].addOption("Colour","Pink/Blue");
arrCatalog["24"].addOption("Colour","Pastels");

arrCatalog["26"]=new Product("26","Wax 3 squares plain",1.75);
arrCatalog["26"].setDescription("Melted wax design, using 2 colours. 6x3\". \nNo 2 will be the same.");
arrCatalog["26"].setThumbnail("photos/thumbnails/DSC_3531.jpg",56,150);
arrCatalog["26"].addImage("photos/DSC_3531.jpg",151,375);
arrCatalog["26"].addOption("Colour","2 pink/1 blue");
arrCatalog["26"].addOption("Colour","2 blue/ 1 pink");
arrCatalog["26"].addOption("Option","3 squares");
arrCatalog["26"].addOption("Option","2 squares and 1 diamond");
arrCatalog["26"].addOption("Option","2 diamonds and 1 square");

arrCatalog["27"]=new Product("27","Love word plus flower cutouts",2.00);
arrCatalog["27"].setDescription("Burgundy textured card. Rose theme, consisting of a ribbon-tied tag, delicate rosebuds and 2 stamps. \nWording torn from cream paper and mounted in the bottom corner of the card. \nWord and flowers may vary. A6.");
arrCatalog["27"].setThumbnail("photos/thumbnails/P6170019.JPG",123,150);
arrCatalog["27"].addImage("photos/P6170019.JPG",254,325);

arrCatalog["28"]=new Product("28","Heart with background and verse",2.50);
arrCatalog["28"].setDescription("Heart shaped lace-effect design, mounted on top of a matching lace-effect background. \nBow or ribbon bouquet with verse and heart cutouts (shaded with chalk) complete the design. \nVerse will vary. Check other pictures available. 5\" sq.");
arrCatalog["28"].setThumbnail("photos/thumbnails/P6170027.JPG",150,137);
arrCatalog["28"].addImage("photos/P6170027.JPG",350,319);
arrCatalog["28"].addImage("photos/P6170028.JPG",350,334);
arrCatalog["28"].addOption("Colour","Cream");
arrCatalog["28"].addOption("Colour","Burgundy");
arrCatalog["28"].addOption("Option","Simple bow");
arrCatalog["28"].addOption("Option","Ribbon bouquet");

arrCatalog["29"]=new Product("29","Mum tags and words",2.50);
arrCatalog["29"].setDescription("Pale pink card. Co-ordinating shades of pink paper mounted beneath family-related verse, together with a dragonfly and rose cutouts. Sheer ribbon is tied around the spine of the card. A5. \nWording and cutouts will vary.");
arrCatalog["29"].setThumbnail("photos/thumbnails/P6170031.JPG",111,150);
arrCatalog["29"].addImage("photos/P6170031.JPG",296,400);

arrCatalog["30"]=new Product("30","3 hearts with silver bow",2.25);
arrCatalog["30"].setDescription("3 hearts in a holographic design, mounted on handmade paper and larger holographic card. Silver bow to finish. A5.");
arrCatalog["30"].setThumbnail("photos/thumbnails/P6170032.JPG",116,150);
arrCatalog["30"].addImage("photos/P6170032.JPG",310,400);
arrCatalog["30"].addOption("Background paper","Pink");
arrCatalog["30"].addOption("Background paper","Lilac");
arrCatalog["30"].addOption("Background paper","Green");

arrCatalog["31"]=new Product("31","Small rose stamp",1.00);
arrCatalog["31"].setDescription("Small rose stamp, placed on top of a pale pink square. Rose head edged with glitter. Sheer ribbon is tied around the spine of the card. 4x3\"");
arrCatalog["31"].setThumbnail("photos/thumbnails/P6170074.JPG",120,150);
arrCatalog["31"].addImage("photos/P6170074.JPG",233,300);

arrCatalog["32"]=new Product("32","Wax boat",1.50);
arrCatalog["32"].setDescription("Melted wax with boat design. Check other pictures available. A6. \nNo 2 will be the same.");
arrCatalog["32"].setThumbnail("photos/thumbnails/P6170044.JPG",150,104);
arrCatalog["32"].addImage("photos/P6170044.JPG",325,225);
arrCatalog["32"].addImage("photos/Cards 067.JPG",325,221);
arrCatalog["32"].addImage("photos/Cards 042.JPG",325,221);
arrCatalog["32"].addOption("Colour","Grey");
arrCatalog["32"].addOption("Colour","Blue/Purple");

arrCatalog["33"]=new Product("33","Wax squares with tissue",1.75);
arrCatalog["33"].setDescription("Melted wax on card, using a variety of metallic colours and shredded tissue. 6x3\". \nNo 2 will be the same.");
arrCatalog["33"].setThumbnail("photos/thumbnails/P6170052.JPG",63,150);
arrCatalog["33"].addImage("photos/P6170052.JPG",157,375);
arrCatalog["33"].addImage("photos/3squarestissue.JPG",132,375);
arrCatalog["33"].addImage("photos/3waxdiamondsHello.JPG",375,142);
arrCatalog["33"].addImage("photos/cards 043.jpg",147,375);
arrCatalog["33"].addImage("photos/3squaresblack.JPG",136,375);
arrCatalog["33"].addImage("photos/glitterwaxsquares.JPG",375,134);
arrCatalog["33"].addOption("Greeting","Happy Birthday");
arrCatalog["33"].addOption("Greeting","Thank You");
arrCatalog["33"].addOption("Greeting","Hello");
arrCatalog["33"].addOption("Greeting","Thinking of you");
arrCatalog["33"].addOption("Greeting","Congratulations");
arrCatalog["33"].addOption("Greeting","Happy Fathers Day");
arrCatalog["33"].addOption("Greeting","None");
arrCatalog["33"].addOption("Edging","Glitter Gold");
arrCatalog["33"].addOption("Edging","Glitter Silver");
arrCatalog["33"].addOption("Edging","SolidBlack");
arrCatalog["33"].addOption("Edging","None");
arrCatalog["33"].addOption("Shape","Squares");
arrCatalog["33"].addOption("Shape","Diamonds");
arrCatalog["33"].addOption("Direction","Portrait");
arrCatalog["33"].addOption("Direction","Landscape");

arrCatalog["34"]=new Product("34","Wax abstract A6",1.50);
arrCatalog["34"].setDescription("Melted wax on paper. Check other pictures available. A6. \nNo 2 will be the same.");
arrCatalog["34"].setThumbnail("photos/thumbnails/Cards 044.jpg",107,150);
arrCatalog["34"].addImage("photos/Cards 044.jpg",232,325);
arrCatalog["34"].addImage("photos/waxbluecopper.jpg",218,325);
arrCatalog["34"].addOption("Colour","EarthTones");
arrCatalog["34"].addOption("Colour","BlueCopper");
arrCatalog["34"].addOption("Highlight","Gold");
arrCatalog["34"].addOption("Highlight","Silver");

arrCatalog["35"]=new Product("35","Wax abstract 4\" square",1.25);
arrCatalog["35"].setDescription("Melted wax on paper. Check other pictures available. 4\" square. \nNo 2 will be the same.");
arrCatalog["35"].setThumbnail("photos/thumbnails/Cards 052.jpg",149,150);
arrCatalog["35"].addImage("photos/Cards 052.jpg",250,250);
arrCatalog["35"].addImage("photos/waxgreencircle.jpg",246,250);
arrCatalog["35"].addImage("photos/waxgreenbrownsquare.jpg",250,247);
arrCatalog["35"].addImage("photos/waxredsquare.jpg",250,250);
arrCatalog["35"].addImage("photos/waxgoldspiral.jpg",250,246);
arrCatalog["35"].addImage("photos/waxpastelscircle.jpg",250,235);
arrCatalog["35"].addOption("Colour","Red");
arrCatalog["35"].addOption("Colour","Green");
arrCatalog["35"].addOption("Colour","EarthTones");
arrCatalog["35"].addOption("Colour","Yellow");
arrCatalog["35"].addOption("Colour","Pastels");
arrCatalog["35"].addOption("Shape","Square");
arrCatalog["35"].addOption("Shape","Circle");

arrCatalog["36"]=new Product("36","Chinese image",1.25);
arrCatalog["36"].setDescription("Oriental image, coloured in pastel shades.  Check other pictures available. A6. \nImage will vary.");
arrCatalog["36"].setThumbnail("photos/thumbnails/Cards 078.jpg",104,150);
arrCatalog["36"].addImage("photos/Cards 078.jpg",222,325);
arrCatalog["36"].addImage("photos/Cards 059.jpg",236,325);
arrCatalog["36"].addImage("photos/Cards 060.jpg",226,325);
arrCatalog["36"].addImage("photos/Cards 079.jpg",223,325);

arrCatalog["37"]=new Product("37","Decoupage dolphins",2.25);
arrCatalog["37"].setDescription("Decoupage dolphins, built up using 4 layers. Colours of backing papers may vary. A6.");
arrCatalog["37"].setThumbnail("photos/thumbnails/Scrapbooking 005.jpg",150,98);
arrCatalog["37"].addImage("photos/Scrapbooking 005.jpg",325,213);

arrCatalog["38"]=new Product("38","Iris apple",2.50);
arrCatalog["38"].setDescription("Iris folded paper in apple design. A6.");
arrCatalog["38"].setThumbnail("photos/thumbnails/P6170036.JPG",107,150);
arrCatalog["38"].addImage("photos/P6170036.JPG",242,325);
arrCatalog["38"].addOption("Colour","Red");
arrCatalog["38"].addOption("Colour","Green");
arrCatalog["38"].addOption("Colour","Yellow/Brown");

arrCatalog["39"]=new Product("39","Wax seahorse",1.50);
arrCatalog["39"].setDescription("Melted wax with seahorse design. A6. Check other pictures available. \nNo 2 will be the same.");
arrCatalog["39"].setThumbnail("photos/thumbnails/P6170043.JPG",105,150);
arrCatalog["39"].addImage("photos/P6170043.JPG",227,325);
arrCatalog["39"].addImage("photos/P6170049.JPG",247,325);
arrCatalog["39"].addImage("photos/P6170094.JPG",223,325);
arrCatalog["39"].addOption("Shape","Square");
arrCatalog["39"].addOption("Shape","Circle");

arrCatalog["40"]=new Product("40","Wax criss-cross",1.50);
arrCatalog["40"].setDescription("Melted wax on card, using 2 colours in a criss-cross design. 6x3\". Check other pictures available. \nNo 2 will be the same.");
arrCatalog["40"].setThumbnail("photos/thumbnails/3goldglittersquares.JPG",150,62);
arrCatalog["40"].addImage("photos/3goldglittersquares.jpg",375,154);
arrCatalog["40"].addImage("photos/3squarescopperblack.jpg",246,250);
arrCatalog["40"].addImage("photos/P6170047.JPG",146,375);
arrCatalog["40"].addImage("photos/3waxsquaresgreen.jpg",375,139);
arrCatalog["40"].addImage("photos/3goldlayeredsquares.jpg",243,250);
arrCatalog["40"].addOption("Colour","Gold/Copper");
arrCatalog["40"].addOption("Colour","Black/Copper");
arrCatalog["40"].addOption("Colour","Green");
arrCatalog["40"].addOption("Colour","Silver/Black");
arrCatalog["40"].addOption("Layered Squares","Yes");
arrCatalog["40"].addOption("Layered Squares","No");

arrCatalog["41"]=new Product("41","Wax squares plus gold diagonal border",1.25);
arrCatalog["41"].setDescription("Melted wax squares, edged with gold glitter. 4.5\" sq. \nNo 2 will be the same.");
arrCatalog["41"].setThumbnail("photos/thumbnails/P6170050.JPG",150,136);
arrCatalog["41"].addImage("photos/P6170050.JPG",250,226);
arrCatalog["41"].addImage("photos/3squarescopperblack.jpg",246,250);
arrCatalog["41"].addImage("photos/P6170051.JPG",250,241);
arrCatalog["41"].addOption("Colour","Browns");
arrCatalog["41"].addOption("Colour","Black/Copper");
arrCatalog["41"].addOption("Number of squares","2");
arrCatalog["41"].addOption("Number of squares","3");
arrCatalog["41"].addOption("Greeting (leave blank for none)");

arrCatalog["42"]=new Product("42","Wax tree",1.50);
arrCatalog["42"].setDescription("Melted wax with tree design. Check other pictures available. A6. \nNo 2 will be the same.");
arrCatalog["42"].setThumbnail("photos/thumbnails/P6170055.JPG",150,102);
arrCatalog["42"].addImage("photos/P6170055.JPG",325,222);
arrCatalog["42"].addImage("photos/waxpalms.JPG",246,250);
arrCatalog["42"].addOption("Tree Type","Green/Brown");
arrCatalog["42"].addOption("Tree Type","Grey");
arrCatalog["42"].addOption("Tree Type","Oak");
arrCatalog["42"].addOption("Tree Type","Palms");

arrCatalog["43"]=new Product("43","Elephant",3.00);
arrCatalog["43"].setDescription("Elephant design, hand sewn in gold thread. Goggle eyes. A6");
arrCatalog["43"].setThumbnail("photos/thumbnails/DSC_3480.JPG",150,102);
arrCatalog["43"].addImage("photos/DSC_3480.JPG",325,221);

arrCatalog["44"]=new Product("44","Lion",3.00);
arrCatalog["44"].setDescription("Lion design, hand sewn in gold/black thread. Goggle eyes. A6.");
arrCatalog["44"].setThumbnail("photos/thumbnails/P6170096.JPG",150,112);
arrCatalog["44"].addImage("photos/P6170096.JPG",325,244);

arrCatalog["45"]=new Product("45","Tools plus measure",1.25);
arrCatalog["45"].setDescription("Tool stickers, with tape measure or construction word edging. Tools may vary - check other pictures available. A6.");
arrCatalog["45"].setThumbnail("photos/thumbnails/DSC_3565a.jpg",103,150);
arrCatalog["45"].addImage("photos/DSC_3565a.jpg",223,325);
arrCatalog["45"].addImage("photos/DSC_3564.jpg",223,325);
arrCatalog["45"].addImage("photos/DSC_3564a.jpg",225,325);
arrCatalog["45"].addOption("Edging","Tape");
arrCatalog["45"].addOption("Edging","Construction");
arrCatalog["45"].addOption("Please specify preferred tools");

arrCatalog["46"]=new Product("46","Tools without measure",1.25);
arrCatalog["46"].setDescription("Tool stickers, no edging. Tools may vary - check other pictures available. A6.");
arrCatalog["46"].setThumbnail("photos/thumbnails/DSC_3567.jpg",103,150);
arrCatalog["46"].addImage("photos/DSC_3567.jpg",223,325);
arrCatalog["46"].addImage("photos/DSC_3566.jpg",223,325);
arrCatalog["46"].addImage("photos/DSC_3566a.jpg",219,325);
arrCatalog["46"].addOption("Please specify preferred tools");

arrCatalog["47"]=new Product("47","Boat",2.80);
arrCatalog["47"].setDescription("Sailing boat design, hand sewn on blue card. A6.");

arrCatalog["48"]=new Product("48","Bike",3.00);
arrCatalog["48"].setDescription("Penny farthing design, hand sewn. A6.");

arrCatalog["49"]=new Product("49","Plane",3.00);
arrCatalog["49"].setDescription("Bi-plane design, hand sewn. A6.");
arrCatalog["49"].setThumbnail("photos/thumbnails/P6170095.JPG",150,107);
arrCatalog["49"].addImage("photos/P6170095.JPG",325,231);

arrCatalog["50"]=new Product("50","Feet with sticker",1.50);
arrCatalog["50"].setDescription("Baby feet embossed with silver, mounted on blue or pink card. 5x4\". \nCheck other pictures available.");
arrCatalog["50"].setThumbnail("photos/thumbnails/Cards 031.jpg",119,150);
arrCatalog["50"].addImage("photos/Cards 031.jpg",238,300);
arrCatalog["50"].addImage("photos/Cards 030.jpg",234,300);
arrCatalog["50"].addOption("Colour/Greeting","Boy");
arrCatalog["50"].addOption("Colour/Greeting","Girl");

arrCatalog["51"]=new Product("51","Feet with ribbon",1.60);
arrCatalog["51"].setDescription("Baby feet embossed with silver, mounted on blue or pink card. Baby-related word on ribbon. Word may vary. 5x4\". \nCheck other pictures available.");
arrCatalog["51"].setThumbnail("photos/thumbnails/Cards 028.jpg",117,150);
arrCatalog["51"].addImage("photos/Cards 028.jpg",234,300);
arrCatalog["51"].addImage("photos/Cards 029.jpg",229,300);
arrCatalog["51"].addOption("Colour/Greeting","Boy");
arrCatalog["51"].addOption("Colour/Greeting","Girl");

arrCatalog["52"]=new Product("52","Twins feet",2.00);
arrCatalog["52"].setDescription("2 pairs of baby feet embossed with silver. Twins lettering. 5\" square.");
arrCatalog["52"].setThumbnail("photos/thumbnails/Cards 034.jpg",150,150);
arrCatalog["52"].addImage("photos/Cards 034.jpg",350,350);

arrCatalog["53"]=new Product("53","Hedgehog Sm",1.00);
arrCatalog["53"].setDescription("Baby hedgehog sticker, with It's a Girl or It's a Boy sticker. \nCheck other pictures available. 5x4\".");
arrCatalog["53"].setThumbnail("photos/thumbnails/DSC_3518.JPG",117,150);
arrCatalog["53"].addImage("photos/DSC_3518.JPG",235,300);
arrCatalog["53"].addImage("photos/DSC_3525.JPG",231,300);
arrCatalog["53"].addOption("Colour/Greeting","Boy");
arrCatalog["53"].addOption("Colour/Greeting","Girl");

arrCatalog["54"]=new Product("54","Hedgehog and baby stuff",1.50);
arrCatalog["54"].setDescription("Baby hedgehog and other baby-related stickers. A6.");
arrCatalog["54"].setThumbnail("photos/thumbnails/DSC_3513.JPG",103,150);
arrCatalog["54"].addImage("photos/DSC_3513.JPG",224,325);
arrCatalog["54"].addOption("Colour/Greeting","Boy");
arrCatalog["54"].addOption("Colour/Greeting","Girl");

arrCatalog["55"]=new Product("55","Iris teddy",2.50);
arrCatalog["55"].setDescription("Iris folded paper in teddy bear design. A6.");
arrCatalog["55"].setThumbnail("photos/thumbnails/P6170035.JPG",109,150);
arrCatalog["55"].addImage("photos/P6170035.JPG",236,325);
arrCatalog["55"].addOption("Colour","Pink/Purple");
arrCatalog["55"].addOption("Colour","Blue");
arrCatalog["55"].addOption("Colour","Green");
arrCatalog["55"].addOption("Colour","Yellow/Gold");
arrCatalog["55"].addOption("Greeting","None");
arrCatalog["55"].addOption("Greeting","Congratulations");
arrCatalog["55"].addOption("Greeting","It's a Boy");
arrCatalog["55"].addOption("Greeting","It's a Girl");

arrCatalog["56"]=new Product("56","Material Get Well",1.50);
arrCatalog["56"].setDescription("Material flowers edged with gold or silver glitter. A6. Colours of flowers may vary.");
arrCatalog["56"].setThumbnail("photos/thumbnails/P6170085.JPG",102,150);
arrCatalog["56"].addImage("photos/P6170085.JPG",221,325);
arrCatalog["56"].addOption("Glitter","Silver");
arrCatalog["56"].addOption("Glitter","Gold");
arrCatalog["56"].addOption("Greeting","Get Well Soon");
arrCatalog["56"].addOption("Greeting","Thinking of You");

arrCatalog["57"]=new Product("57","Best wishes sticker",1.50);
arrCatalog["57"].setDescription("Flower sticker with best wishes greeting, coloured using felt pens. 5x4\".");
arrCatalog["57"].setThumbnail("photos/thumbnails/P6170083.JPG",72,150);
arrCatalog["57"].addImage("photos/P6170083.JPG",162,375);
arrCatalog["57"].addOption("Colour","Blue");
arrCatalog["57"].addOption("Colour","Pink");
arrCatalog["57"].addOption("Colour","Purple");
arrCatalog["57"].addOption("Colour","Green");
arrCatalog["57"].addOption("Colour","Yellow");

arrCatalog["58"]=new Product("58","Teddy with suede",1.75);
arrCatalog["58"].setDescription("Teddy bear stamp, coloured with water colour pencils. Can be placed on 2 colours of suede paper as background. A6. \nColours may vary - check other pictures available.");
arrCatalog["58"].setThumbnail("photos/thumbnails/Cards 002.jpg",114,150);
arrCatalog["58"].addImage("photos/Cards 002.jpg",247,325);
arrCatalog["58"].addImage("photos/Cards 019.jpg",262,325);
arrCatalog["58"].addImage("photos/Cards 027.jpg",227,325);
arrCatalog["58"].addOption("SuedePaper","Yes");
arrCatalog["58"].addOption("SuedePaper","No");
arrCatalog["58"].addOption("Colours");

arrCatalog["59"]=new Product("59","Acetate cat",1.50);
arrCatalog["59"].setDescription("Cat outlined in black and coloured using glass paints. \nOptionally mounted on handmade mulberry paper or spiders web effect paper. \nCheck other pictures available.");
arrCatalog["59"].setThumbnail("photos/thumbnails/Cards 009.jpg",105,150);
arrCatalog["59"].addImage("photos/Cards 009.jpg",228,325); // red/yellow on yellow
arrCatalog["59"].addImage("photos/Cards 022.jpg",232,325); // purple/green on green
arrCatalog["59"].addImage("photos/Stuff 021.jpg",216,300); // yellow/white on white
arrCatalog["59"].addImage("photos/Stuff 017.jpg",335,350); // red/yellow on white
arrCatalog["59"].addImage("photos/Stuff 022.jpg",209,325); // yellow/green on pale yellow
arrCatalog["59"].addImage("photos/Stuff 019.jpg",229,325); // yellow/red on yellow
arrCatalog["59"].addImage("photos/Stuff 018.jpg",224,325); // red/yellow on yellow
arrCatalog["59"].addImage("photos/Stuff 020.jpg",223,325); // purple/green on white
arrCatalog["59"].addOption("Colour","Red/Yellow");
arrCatalog["59"].addOption("Colour","Yellow/Red");
arrCatalog["59"].addOption("Colour","Purple/Green");
arrCatalog["59"].addOption("Colour","Yellow/White");
arrCatalog["59"].addOption("Colour","Yellow/Green");
arrCatalog["59"].addOption("Backing paper","None");
arrCatalog["59"].addOption("Backing paper","Yellow");
arrCatalog["59"].addOption("Backing paper","Red");
arrCatalog["59"].addOption("Backing paper","Pale blue");
arrCatalog["59"].addOption("Card Colour","Yellow");
arrCatalog["59"].addOption("Card Colour","Green");
arrCatalog["59"].addOption("Card Colour","White");
arrCatalog["59"].addOption("Card Size","A6");
arrCatalog["59"].addOption("Card Size","5\" square");
arrCatalog["59"].addOption("Card Size","4x3\"");

arrCatalog["60"]=new Product("60","Footballers",1.00);
arrCatalog["60"].setDescription("Footballers. Please specify colours of the clothing required. \nBackground stickers may vary (net, balls or cup) - please specify if specific stickers are required. A6.");
arrCatalog["60"].setThumbnail("photos/thumbnails/Cards 014.jpg",119,150);
arrCatalog["60"].addImage("photos/Cards 014.jpg",236,300);
arrCatalog["60"].addOption("Colour of clothing");
arrCatalog["60"].addOption("Preferred stickers");

arrCatalog["61"]=new Product("61","Raised sheep",1.50);
arrCatalog["61"].setDescription("Aplique sheep, giving a raised effect. A6. \nCheck other pictures available.");
arrCatalog["61"].setThumbnail("photos/thumbnails/Cards 020.jpg",150,115);
arrCatalog["61"].addImage("photos/Cards 020.jpg",325,249);
arrCatalog["61"].addImage("photos/Cards 018.jpg",325,257);
arrCatalog["61"].addOption("Ink colour","Black");
arrCatalog["61"].addOption("Ink colour","Multi-coloured");

arrCatalog["62"]=new Product("62","Sports",2.00);
arrCatalog["62"].setDescription("Little boy or girl playing a sport, made from wood and hand painted. \nMounted on sticky pads to give a raised effect. 4x3\"");
arrCatalog["62"].setThumbnail("photos/thumbnails/DSC_3555.jpg",117,150);
arrCatalog["62"].addImage("photos/DSC_3555.jpg",193,250);
arrCatalog["62"].addOption("Sport","Boy - Football");
arrCatalog["62"].addOption("Sport","Girl - Tennis");

arrCatalog["63"]=new Product("63","Dinosaurs",1.25);
arrCatalog["63"].setDescription("Variety of dinosaur stickers (will vary). A6. \nCheck other pictures available.");
arrCatalog["63"].setThumbnail("photos/thumbnails/DSC_3556a.jpg",117,150);
arrCatalog["63"].addImage("photos/DSC_3556a.jpg",233,300);
arrCatalog["63"].addImage("photos/DSC_3556.jpg",233,300);
arrCatalog["63"].addImage("photos/DSC_3558.jpg",325,222);
arrCatalog["63"].addImage("photos/DSC_3559a.jpg",223,325);
arrCatalog["63"].addImage("photos/DSC_3561a.jpg",222,325);
arrCatalog["63"].addOption("Colour preference of dinosaurs");

arrCatalog["64"]=new Product("64","Disney",1.25);
arrCatalog["64"].setDescription("Mickey Mouse or Dumbo sticker, with greeting. A6. \nPlease specify required stickers.");
arrCatalog["64"].setThumbnail("photos/thumbnails/DSC_3563a.jpg",103,150);
arrCatalog["64"].addImage("photos/DSC_3563a.jpg",223,325);
arrCatalog["64"].addImage("photos/DSC_3557.jpg",235,300);
arrCatalog["64"].addOption("Sticker","Mickey Mouse");
arrCatalog["64"].addOption("Sticker","Dumbo");

arrCatalog["65"]=new Product("65","Baseball",1.25);
arrCatalog["65"].setDescription("Selection of baseball related sports stickers. A6. \nColour of card may vary.");
arrCatalog["65"].setThumbnail("photos/thumbnails/DSC_3559.jpg",105,150);
arrCatalog["65"].addImage("photos/DSC_3559.jpg",230,325);

arrCatalog["66"]=new Product("66","Farm animals",1.25);
arrCatalog["66"].setDescription("Selection of farm animal stickers - will vary. A6. \nIf specific animals are required, please specify.");
arrCatalog["66"].setThumbnail("photos/thumbnails/DSC_3562a.jpg",150,103);
arrCatalog["66"].addImage("photos/DSC_3562a.jpg",325,223);
arrCatalog["66"].addImage("photos/DSC_3560.jpg",223,325);
arrCatalog["66"].addOption("Animals required");

arrCatalog["67"]=new Product("67","Boys toys",1.25);
arrCatalog["67"].setDescription("Stickers for boys (digger, truck, fishing rod). A6. \nPlease specify choice required.");
arrCatalog["67"].setThumbnail("photos/thumbnails/DSC_3562.jpg",150,102);
arrCatalog["67"].addImage("photos/DSC_3562.jpg",325,222);
arrCatalog["67"].addImage("photos/DSC_3560a.jpg",222,325);
arrCatalog["67"].addImage("photos/DSC_3561.jpg",227,325);
arrCatalog["67"].addOption("Sticker","Digger");
arrCatalog["67"].addOption("Sticker","Truck");
arrCatalog["67"].addOption("Sticker","Fishing");

arrCatalog["68"]=new Product("68","Teddy print",1.50);
arrCatalog["68"].setDescription("Picture of teddybear sitting infront of a pile of books, mounted on co-ordinating background paper. 5\" square. \nColour of background paper may vary.");
arrCatalog["68"].setThumbnail("photos/thumbnails/New Cards 009.jpg",150,147);
arrCatalog["68"].addImage("photos/New Cards 009.jpg",350,346);

arrCatalog["69"]=new Product("69","Fuschias small",1.25);
arrCatalog["69"].setDescription("Fuschia flowers stickers in gold, coloured with felt pens. 5x4\". \nCheck other pictures available.");
arrCatalog["69"].setThumbnail("photos/thumbnails/DSC_3537.jpg",114,150);
arrCatalog["69"].addImage("photos/DSC_3537.jpg",228,300);
arrCatalog["69"].addImage("photos/Cards 016.jpg",231,300);
arrCatalog["69"].addOption("Colour","Pink/Purple");
arrCatalog["69"].addOption("Colour","Pinks");
arrCatalog["69"].addOption("Colour","Purple");
arrCatalog["69"].addOption("Colour","Blue");
arrCatalog["69"].addOption("Card colour","Cream");
arrCatalog["69"].addOption("Card colour","White");

arrCatalog["70"]=new Product("70","Chalk wild flowers",2.25);
arrCatalog["70"].setDescription("3 assorted wild flowers, coloured with chalk and with a chalk edging to the card. 5\" square. \nCheck other pictures available.");
arrCatalog["70"].setThumbnail("photos/thumbnails/DSC_3509.jpg",147,150);
arrCatalog["70"].addImage("photos/DSC_3509.jpg",344,350);
arrCatalog["70"].addImage("photos/DSC_3508.jpg",345,350);
arrCatalog["70"].addImage("photos/DSC_3510.jpg",350,348);
arrCatalog["70"].addImage("photos/DSC_3511.jpg",344,350);
arrCatalog["70"].addImage("photos/DSC_3512.jpg",345,350);
arrCatalog["70"].addOption("Colour","Purples");
arrCatalog["70"].addOption("Colour","Pinks");
arrCatalog["70"].addOption("Colour","Pink/Purples");
arrCatalog["70"].addOption("Colour","Blues");
arrCatalog["70"].addOption("Colour","Yellow/Oranges");

arrCatalog["72"]=new Product("72","Spirelli diamond",2.00);
arrCatalog["72"].setDescription("Yellow thread wrapped in a diamond design, with cutout daffodil. A6.");
arrCatalog["72"].setThumbnail("photos/thumbnails/Cards 050.jpg",120,150);
arrCatalog["72"].addImage("photos/Cards 050.jpg",258,325);

arrCatalog["73"]=new Product("73","Iris inks",2.50);
arrCatalog["73"].setDescription("Blended inks with black overlay, in iris design. 5\" square. \nNo 2 will be the same.");
arrCatalog["73"].setThumbnail("photos/thumbnails/DSC_3486.jpg",146,150);
arrCatalog["73"].addImage("photos/DSC_3486.jpg",349,350);
arrCatalog["73"].addOption("Colour","Green/Blue");
arrCatalog["73"].addOption("Colour","Pastels");
arrCatalog["73"].addOption("Colour","Yellow/Pink");
arrCatalog["73"].addOption("Colour","Green/Yellow");
arrCatalog["73"].addOption("Greeting","Happy Birthday");
arrCatalog["73"].addOption("Greeting","Thank You");
arrCatalog["73"].addOption("Greeting","Thinking of You");
arrCatalog["73"].addOption("Greeting","Get Well Soon");

arrCatalog["74"]=new Product("74","1 flower",2.25);
arrCatalog["74"].setDescription("Real pressed flower, inserted into a clear plastic window with gold or silver edging. 6x3\". \nFlower may vary.");
arrCatalog["74"].setThumbnail("photos/thumbnails/DSC_3532.jpg",57,150);
arrCatalog["74"].addImage("photos/DSC_3532.jpg",142,375);
arrCatalog["74"].addOption("Flower","White");
arrCatalog["74"].addOption("Flower","Yellow");
arrCatalog["74"].addOption("Flower","Pink");
arrCatalog["74"].addOption("Flower","Blue");
arrCatalog["74"].addOption("Flower","Red");
arrCatalog["74"].addOption("Edging","Silver");
arrCatalog["74"].addOption("Edging","Gold");
arrCatalog["74"].addOption("Greeting","Happy Birthday");
arrCatalog["74"].addOption("Greeting","Thank You");
arrCatalog["74"].addOption("Greeting","Thinking of You");
arrCatalog["74"].addOption("Greeting","Congratulations");
arrCatalog["74"].addOption("Greeting","Get Well Soon");

arrCatalog["76"]=new Product("76","Heart and flower stickers",1.00);
arrCatalog["76"].setDescription("Four block silver stickers (2 flowers and 2 hearts). A6.");
arrCatalog["76"].setThumbnail("photos/thumbnails/P6170072.JPG",112,150);
arrCatalog["76"].addImage("photos/P6170072.JPG",229,300);
arrCatalog["76"].addOption("Colour","Pinks");
arrCatalog["76"].addOption("Colour","Pink/Purple");
arrCatalog["76"].addOption("Colour","Blues");
arrCatalog["76"].addOption("Colour","Yellow/Orange");

arrCatalog["77"]=new Product("77","Balloons",2.50);
arrCatalog["77"].setDescription("Balloon design, hand sewn in multi-coloured thread. A6.");

arrCatalog["78"]=new Product("78","Suede dog",1.50);
arrCatalog["78"].setDescription("Dog sticker in black, on suede paper. 4.5\" square. \nEdged with gold border and gold greeting");
arrCatalog["78"].setThumbnail("photos/thumbnails/Cards 003.jpg",150,147);
arrCatalog["78"].addImage("photos/Cards 003.jpg",250,246);
arrCatalog["78"].addOption("Suede Colour","Camel");
arrCatalog["78"].addOption("Suede Colour","Brown");
arrCatalog["78"].addOption("Suede Colour","Pale green");
arrCatalog["78"].addOption("Suede Colour","Pale blue");
arrCatalog["78"].addOption("Greeting (Leave blank for None)");

arrCatalog["79"]=new Product("79","Suede cat",2.25);
arrCatalog["79"].setDescription("Cat sticker in black, on suede paper. A6.");
arrCatalog["79"].setThumbnail("photos/thumbnails/Cards 011.jpg",108,150);
arrCatalog["79"].addImage("photos/Cards 011.jpg",235,325);
arrCatalog["79"].addOption("Suede Colour","Camel");
arrCatalog["79"].addOption("Suede Colour","Brown");
arrCatalog["79"].addOption("Suede Colour","Pale green");
arrCatalog["79"].addOption("Suede Colour","Pale blue");
arrCatalog["79"].addOption("Greeting (Leave blank for None)");

arrCatalog["81"]=new Product("81","4 wax squares",1.75);
arrCatalog["81"].setDescription("Melted wax in black/metallic tones, with bits of tissue for a raised effect. 5\" square. \nNo 2 cards will be the same.");
arrCatalog["81"].setThumbnail("photos/thumbnails/P6170054.JPG",150,148);
arrCatalog["81"].addImage("photos/P6170054.JPG",273,275);
arrCatalog["81"].addOption("Greeting","Happy Birthday (Gold)");
arrCatalog["81"].addOption("Greeting","Happy Birthday (Silver)");
arrCatalog["81"].addOption("Greeting","With Love (Gold)");
arrCatalog["81"].addOption("Greeting","With Love (Silver)");

arrCatalog["82"]=new Product("82","Lace folded circle",2.00);
arrCatalog["82"].setDescription("Two tone card, cut and folded to make a circular pattern. 5\" square.");
arrCatalog["82"].setThumbnail("photos/thumbnails/P6170092.JPG",150,145);
arrCatalog["82"].addImage("photos/P6170092.JPG",275,270);
arrCatalog["82"].addOption("Colour","Yellow/Green");
arrCatalog["82"].addOption("Colour","White/Black");
arrCatalog["82"].addOption("Colour","Ivory/Blue");

arrCatalog["83"]=new Product("83","Decoupage car",2.50);
arrCatalog["83"].setDescription("Decoupage car, built up using 6 layers. Colour of card may vary. A6.");
arrCatalog["83"].setThumbnail("photos/thumbnails/Cards 001.jpg",150,93);
arrCatalog["83"].addImage("photos/Cards 001.jpg",325,190);
arrCatalog["83"].addOption("Car","Green");
arrCatalog["83"].addOption("Car","Red");
arrCatalog["83"].addOption("Card colour","Blue");
arrCatalog["83"].addOption("Card colour","Pale Green");
arrCatalog["83"].addOption("Card colour","White");

arrCatalog["84"]=new Product("84","Old cars",1.50);
arrCatalog["84"].setDescription("Assorted car images. Images may vary. A6");
arrCatalog["84"].setThumbnail("photos/thumbnails/Cards 021.jpg",119,150);
arrCatalog["84"].addImage("photos/Cards 021.jpg",238,300);

arrCatalog["85"]=new Product("85","Spitfire",2.25);
arrCatalog["85"].setDescription("Spitfire stamp, coloured in chalks or felt pens. \nCheck other pictures available. A6.");
arrCatalog["85"].setThumbnail("photos/thumbnails/DSC_3476.jpg",106,150);
arrCatalog["85"].addImage("photos/DSC_3476.jpg",229,325);
arrCatalog["85"].addImage("photos/DSC_3479.jpg",221,325);
arrCatalog["85"].addOption("Plane angle","Straight");
arrCatalog["85"].addOption("Plane angle","Angled");

arrCatalog["86"]=new Product("86","Plane Birthday",2.00);
arrCatalog["86"].setDescription("Travel related paper, with plane and postcard. Small stamps and coin stickers also included - designs may vary. A6");
arrCatalog["86"].setThumbnail("photos/thumbnails/DSC_3478.jpg",101,150);
arrCatalog["86"].addImage("photos/DSC_3478.jpg",219,325);

arrCatalog["87"]=new Product("87","Car rub-off",1.50);
arrCatalog["87"].setDescription("Old car design in sepia colours. 5\" square card.");
arrCatalog["87"].setThumbnail("photos/thumbnails/DSC_3534.jpg",147,150);
arrCatalog["87"].addImage("photos/DSC_3534.jpg",348,350);

arrCatalog["88"]=new Product("88","Porsche",3.00);
arrCatalog["88"].setDescription("Porsche print mounted above a key tied with ribbon, and a hand-written verse. \nKey and ribbon may vary. A5.");
arrCatalog["88"].setThumbnail("photos/thumbnails/New Cards 001.jpg",109,150);
arrCatalog["88"].addImage("photos/New Cards 001.jpg",290,400);
arrCatalog["88"].addOption("Age");

arrCatalog["89"]=new Product("89","Ship",1.75);
arrCatalog["89"].setDescription("Ship, mounted on co-ordinating backing paper. Please specify any wording required. 5\" square card.");
arrCatalog["89"].setThumbnail("photos/thumbnails/New Cards 011.jpg",151,150);
arrCatalog["89"].addImage("photos/New Cards 011.jpg",346,350);
arrCatalog["89"].addOption("Wording");

arrCatalog["90"]=new Product("90","War postcards",2.00);
arrCatalog["90"].setDescription("Small soldiers wearing military uniform, mounted with a small postcard. 5x4\". Gold greeting reads Happy Birthday");
arrCatalog["90"].setThumbnail("photos/thumbnails/P6170070.JPG",114,150);
arrCatalog["90"].addImage("photos/P6170070.JPG",230,300);

arrCatalog["91"]=new Product("91","Liner",2.00);
arrCatalog["91"].setDescription("Travel themed paper in 2 layers, with postcard picture of a liner mounted on top. \nPaper may vary slightly. A6.");
arrCatalog["91"].setThumbnail("photos/thumbnails/P6170078.JPG",104,150);
arrCatalog["91"].addImage("photos/P6170078.JPG",219,325);

arrCatalog["93"]=new Product("93","Passport sticker",1.50);
arrCatalog["93"].setDescription("Travel documents sticker, gold wavy border and gold tag. 4.5\" square. \nWording on the tag may vary.");
arrCatalog["93"].setThumbnail("photos/thumbnails/DSC_3517.jpg",140,150);
arrCatalog["93"].addImage("photos/DSC_3517.jpg",238,250);

arrCatalog["94"]=new Product("94","Travel journal",2.00);
arrCatalog["94"].setDescription("Travel related stickers, small postcard (country may vary), stamp, tag, and journal border with ripped edge effect. A6.");
arrCatalog["94"].setThumbnail("photos/thumbnails/P6170097.JPG",103,150);
arrCatalog["94"].addImage("photos/P6170097.JPG",222,325);

arrCatalog["96"]=new Product("96","3 kings",1.50);
arrCatalog["96"].setDescription("Melted wax in sunset colours, with black christmas stamp. A6. Check other pictures available. \nNo 2 will be the same.");
arrCatalog["96"].setThumbnail("photos/thumbnails/P6170058.JPG",150,107);
arrCatalog["96"].addImage("photos/P6170058.JPG",325,223);
arrCatalog["96"].addImage("photos/Cards 048.JPG",325,223);

arrCatalog["97"]=new Product("97","1 wax square",1.25);
arrCatalog["97"].setDescription("Melted wax square, edged with black. Mounted on handmade mulberry paper with small gold stars to finish. 5x4\". Colour of background and wax may vary. \nNo 2 wax squares will be the same.");
arrCatalog["97"].setThumbnail("photos/thumbnails/Cards 051.jpg",122,150);
arrCatalog["97"].addImage("photos/Cards 051.jpg",244,300);
arrCatalog["97"].addImage("photos/Things 019.jpg",244,300);
arrCatalog["97"].addOption("Wax colour","Pink");
arrCatalog["97"].addOption("Wax colour","Blue");
arrCatalog["97"].addOption("Wax colour","Red");
arrCatalog["97"].addOption("Background paper","Khaki Green");
arrCatalog["97"].addOption("Background paper","Yellow");
arrCatalog["97"].addOption("Background paper","Dark Green");
arrCatalog["97"].addOption("Background paper","Red");

arrCatalog["99"]=new Product("99","Iris small tree",1.50);
arrCatalog["99"].setDescription("Iris folded paper in christmas tree design. 4x3\". \nColour of tree may vary.");
arrCatalog["99"].setThumbnail("photos/thumbnails/P6170056.JPG",109,150);
arrCatalog["99"].addImage("photos/P6170056.JPG",161,250);
arrCatalog["99"].addOption("Colour","Blue");
arrCatalog["99"].addOption("Colour","Green");
arrCatalog["99"].addOption("Colour","Red/Brown");

arrCatalog["100"]=new Product("100","Material square",1.50);
arrCatalog["100"].setDescription("Christmas material design, mounted diagonally, and edged with gold glitter. 4x3\"");
arrCatalog["100"].setThumbnail("photos/thumbnails/Cards 058.jpg",150,145);
arrCatalog["100"].addImage("photos/Cards 058.jpg",250,241);

arrCatalog["101"]=new Product("101","Village sticker square",1.00);
arrCatalog["101"].setDescription("Gold sticker representing a Christmas village scene, coloured with pencils or left blank.");
arrCatalog["101"].setThumbnail("photos/thumbnails/Cards 061.jpg",147,150);
arrCatalog["101"].addImage("photos/Cards 061.jpg",240,250);
arrCatalog["101"].addImage("photos/Cards 070.jpg",234,325);
arrCatalog["101"].addOption("Colouring","Pencils");
arrCatalog["101"].addOption("Colouring","Blank");
arrCatalog["101"].addOption("Card size","5\" square");
arrCatalog["101"].addOption("Card size","A6");
arrCatalog["101"].addOption("Card colour","White");
arrCatalog["101"].addOption("Card colour","Navy");
arrCatalog["101"].addOption("Card colour","Red");
arrCatalog["101"].addOption("Card colour","Green");

arrCatalog["102"]=new Product("102","Village sticker circle",1.00);
arrCatalog["102"].setDescription("Circular sticker in a christmas village scene, mounted on navy card with suitable greeting in gold. A6.");
arrCatalog["102"].setThumbnail("photos/thumbnails/Cards 063.jpg",105,150);
arrCatalog["102"].addImage("photos/Cards 063.jpg",229,325);

arrCatalog["103"]=new Product("103","Angel",1.50);
arrCatalog["103"].setDescription("Christmas angel stamp, in gold or silver. A6.");
arrCatalog["103"].setThumbnail("photos/thumbnails/Cards 066.jpg",150,101);
arrCatalog["103"].addImage("photos/Cards 066.jpg",325,221);
arrCatalog["103"].addImage("photos/Cards 049.jpg",325,224);
arrCatalog["103"].addOption("Angel outline","Plain gold");
arrCatalog["103"].addOption("Angel outline","Glitter gold");
arrCatalog["103"].addOption("Angel outline","Plain silver");
arrCatalog["103"].addOption("Angel outline","Glitter silver");
arrCatalog["103"].addOption("Card colour","Red");
arrCatalog["103"].addOption("Card colour","Green");
arrCatalog["103"].addOption("Card colour","White");

arrCatalog["104"]=new Product("104","Gold kit - hat",2.00);
arrCatalog["104"].setDescription("Christmas party hat, topped with amber coloured star. Card has metallic finish. 6\" square.");
arrCatalog["104"].setThumbnail("photos/thumbnails/Cards 075.jpg",145,150);
arrCatalog["104"].addImage("photos/Cards 075.jpg",349,350);

arrCatalog["105"]=new Product("105","Gold kit - stocking",2.00);
arrCatalog["105"].setDescription("Christmas stocking mounted in the centre of a 6\" square card. \nCheck other pictures available.");
arrCatalog["105"].setThumbnail("photos/thumbnails/Cards 076.jpg",147,150);
arrCatalog["105"].addImage("photos/Cards 076.jpg",350,349);
arrCatalog["105"].addImage("photos/Cards 077.jpg",350,350);
arrCatalog["105"].addOption("Colour","Gold");
arrCatalog["105"].addOption("Colour","White");

arrCatalog["106"]=new Product("106","Gold kit - snowman",2.00);
arrCatalog["106"].setDescription("Christmas snowman, wearing hat, mounted on holographic card in the centre of a 6\" square card.");
arrCatalog["106"].setThumbnail("photos/thumbnails/snowman.jpg",147,150);
arrCatalog["106"].addImage("photos/Things 020.jpg",350,349);
arrCatalog["106"].addOption("Colour","Gold");
arrCatalog["106"].addOption("Colour","White");

arrCatalog["107"]=new Product("107","Iris star",2.80);
arrCatalog["107"].setDescription("Various shades of Iris folded paper in star design, mounted behind co-ordinated paper with scalloped edges and small star stickers to finish. Note: Shades of colour used in the design may differ from those shown 5\" square.");
arrCatalog["107"].setThumbnail("photos/thumbnails/P6170057.JPG",150,148);
arrCatalog["107"].addImage("photos/P6170057.JPG",320,325);
arrCatalog["107"].addOption("Colour","Blues");
arrCatalog["107"].addOption("Colour","Greens");

arrCatalog["108"]=new Product("108","Iris Christmas tree",2.80);
arrCatalog["108"].setDescription("Various shades of Iris folded paper in christmas tree design. 5\" square. Please specify edging (whole or just right hand edge) - check other pictures available. \nColours of tree and edging may vary.");
arrCatalog["108"].setThumbnail("photos/thumbnails/P6170064.JPG",150,147);
arrCatalog["108"].addImage("photos/P6170064.JPG",349,350);
arrCatalog["108"].addImage("photos/P6170063.JPG",350,350);
arrCatalog["108"].addOption("Edging","Stars and green strip");
arrCatalog["108"].addOption("Edging","Green border around tree");

arrCatalog["109"]=new Product("109","Lace circle christmas",2.00);
arrCatalog["109"].setDescription("Two tone card in christmas colours, cut and folded to make a circular pattern. Holly leaf sticker in the centre and gold glitter accent. 5\" square.");
arrCatalog["109"].setThumbnail("photos/thumbnails/P6170066.JPG",150,145);
arrCatalog["109"].addImage("photos/P6170066.JPG",250,245);

arrCatalog["110"]=new Product("110","Fleur-de-lys",2.50);
arrCatalog["110"].setDescription("Hand sewn fleur-de-lys in gold thread. Please specify card colour (blue, white, red, brown). A6.");
arrCatalog["110"].addImage("photos/P6170086.JPG",233,325);
arrCatalog["110"].addOption("Card colour","Blue");
arrCatalog["110"].addOption("Card colour","White");
arrCatalog["110"].addOption("Card colour","Red");
arrCatalog["110"].addOption("Card colour","Brown");
arrCatalog["110"].addOption("Thread","Gold");
arrCatalog["110"].addOption("Thread","Emerald Green");

arrCatalog["112"]=new Product("112","Graduation",1.25);
arrCatalog["112"].setDescription("Education-related themed stickers. Stickers may vary. A6.");
arrCatalog["112"].setThumbnail("photos/thumbnails/DSC_3567a.jpg",103,150);
arrCatalog["112"].addImage("photos/DSC_3567a.jpg",223,325);

arrCatalog["113"]=new Product("113","Mothers Day",2.00);
arrCatalog["113"].setDescription("Real pressed flower mounted in clear window, above co-ordinating handmade paper. Happy Mothers Day greeting sticker. 6x3\". \nFlower may vary.");
arrCatalog["113"].setThumbnail("photos/thumbnails/P6170025.JPG",77,150);
arrCatalog["113"].addImage("photos/P6170025.JPG",193,375);
arrCatalog["113"].addOption("Flower","Pink");
arrCatalog["113"].addOption("Flower","Purple");
arrCatalog["113"].addOption("Flower","Red");
arrCatalog["113"].addOption("Flower","White daisy");
arrCatalog["113"].addOption("Edging","Silver");
arrCatalog["113"].addOption("Edging","Gold");

arrCatalog["114"]=new Product("114","Retirement",2.00);
arrCatalog["114"].setDescription("Real pressed flower mounted in a clear circular window. Happy Retirement sticker mounted below, with heart stickers to finish. 6x3\". \nFlower may vary.");
arrCatalog["114"].setThumbnail("photos/thumbnails/Cards 025.jpg",61,150);
arrCatalog["114"].addImage("photos/Cards 025.jpg",152,375);
arrCatalog["114"].addOption("Flower","Purple");
arrCatalog["114"].addOption("Flower","Purple/Yellow");
arrCatalog["114"].addOption("Flower","Blue");
arrCatalog["114"].addOption("Edging","Silver");
arrCatalog["114"].addOption("Edging","Gold");

arrCatalog["115"]=new Product("115","Daffodils",1.25);
arrCatalog["115"].setDescription("Daffodil stamp coloured with felt pens. 5x4\".");
arrCatalog["115"].setThumbnail("photos/thumbnails/P6170071.JPG",112,150);
arrCatalog["115"].addImage("photos/P6170071.JPG",188,250);
arrCatalog["115"].addOption("Greeting","Thank You");
arrCatalog["115"].addOption("Greeting","Get Well Soon");
arrCatalog["115"].addOption("Greeting","Happy Easter");
arrCatalog["115"].addOption("Greeting","Happy Birthday");

arrCatalog["116"]=new Product("116","Thank you 3 daisies",1.25);
arrCatalog["116"].setDescription("2 large daisies, with smaller daisy and thank you verse mounted in the centre. \nDaisies coloured with felt pens. 6x3\"");
arrCatalog["116"].setThumbnail("photos/thumbnails/P6170080.JPG",74,150);
arrCatalog["116"].addImage("photos/P6170080.JPG",153,375);
arrCatalog["116"].addOption("Daisy colour","Pale pink");
arrCatalog["116"].addOption("Daisy colour","Dark pink");
arrCatalog["116"].addOption("Daisy colour","Pale green");
arrCatalog["116"].addOption("Daisy colour","Pale blue");
arrCatalog["116"].addOption("Daisy colour","Red");

arrCatalog["117"]=new Product("117","Thank you bottom",1.25);
arrCatalog["117"].setDescription("3 silver daisies in varying sizes with thank you verse, coloured with felt pens. 6x3\"");
arrCatalog["117"].setThumbnail("photos/thumbnails/P6170082.JPG",71,150);
arrCatalog["117"].addImage("photos/P6170082.JPG",151,375);
arrCatalog["117"].addImage("photos/blue thank you.jpg",48,150);
arrCatalog["117"].addOption("Daisy colour","Pale pink");
arrCatalog["117"].addOption("Daisy colour","Dark pink");
arrCatalog["117"].addOption("Daisy colour","Pale green");
arrCatalog["117"].addOption("Daisy colour","Pale blue");
arrCatalog["117"].addOption("Daisy colour","Red");

arrCatalog["118"]=new Product("118","Bride and Groom",2.50);
arrCatalog["118"].setDescription("Bride and groom stamp with various options available. 5\" square. \nCheck other pictures available.");
arrCatalog["118"].setThumbnail("photos/thumbnails/Cards 012.jpg",148,150);
arrCatalog["118"].addImage("photos/Cards 012.jpg",350,346);
arrCatalog["118"].addImage("photos/Cards 039.jpg",350,348);
arrCatalog["118"].addImage("photos/Cards 040.jpg",350,350);
arrCatalog["118"].addOption("Mounting","Dusky pink suede");
arrCatalog["118"].addOption("Mounting","Pale beige suede");
arrCatalog["118"].addOption("Mounting","Burgundy suede");
arrCatalog["118"].addOption("Mounting","Pale green suede");
arrCatalog["118"].addOption("Mounting","Dark green suede");
arrCatalog["118"].addOption("Mounting","Pale blue suede");
arrCatalog["118"].addOption("Mounting","Music themed material");
arrCatalog["118"].addOption("Mounting","None");
arrCatalog["118"].addOption("Border","Gold");
arrCatalog["118"].addOption("Border","Silver");
arrCatalog["118"].addOption("Border","None");

arrCatalog["120"]=new Product("120","Old wedding with rings",2.00);
arrCatalog["120"].setDescription("Victorian theme wedding sticker, with pair of rings to decorate."); 
arrCatalog["120"].setThumbnail("photos/thumbnails/DSC_3485.jpg",104,150);
arrCatalog["120"].addImage("photos/DSC_3485.jpg",225,325);
arrCatalog["120"].addImage("photos/P6170069.jpg",235,300);
arrCatalog["120"].addImage("photos/P6170065.jpg",249,250);
arrCatalog["120"].addOption("Card size","A6");
arrCatalog["120"].addOption("Card size","4\" square");

arrCatalog["121"]=new Product("121","Rings with wording",1.00);
arrCatalog["121"].setDescription("2 rings tied with ribbon, with wedding word beneath (word may vary). 4\" square.");
arrCatalog["121"].setThumbnail("photos/thumbnails/DSC_3488.jpg",147,150);
arrCatalog["121"].addImage("photos/DSC_3488.jpg",247,250);

arrCatalog["122"]=new Product("122","Bride and groom green",2.25);
arrCatalog["122"].setDescription("Bride and groom image mounted on coordinating paper, with matching coloured wedding themed words as a surround. \nSilver horseshoes to decorate. 5\" square.");
arrCatalog["122"].setThumbnail("photos/thumbnails/New Cards 006.jpg",148,150);
arrCatalog["122"].addImage("photos/New Cards 006.jpg",344,350);

arrCatalog["123"]=new Product("123","Bride pink",2.25);
arrCatalog["123"].setDescription("Bride image mounted on coordinating paper, with matching coloured wedding themed words as a surround. 5\" square.");
arrCatalog["123"].setThumbnail("photos/thumbnails/New Cards 010.jpg",147,150);
arrCatalog["123"].addImage("photos/New Cards 010.jpg",350,350);

arrCatalog["124"]=new Product("124","Bride with flowers",2.00);
arrCatalog["124"].setDescription("Bride image mounted on coordinating paper, on textured burgundy card. \nWedding sticker beneath, placed between 2 small paper roses. A6.");
arrCatalog["124"].setThumbnail("photos/thumbnails/New Cards 012.jpg",110,150);
arrCatalog["124"].addImage("photos/New Cards 012.jpg",229,325);

arrCatalog["134"]=new Product("134","Bride and Groom - piano",2.50);
arrCatalog["134"].setDescription("Bride and groom stamp mounted in front of a large piano. \nCongratulations wording and gold wedding rings to finish. 5\" square.");
arrCatalog["134"].setThumbnail("photos/thumbnails/crafts 009.jpg",150,149);
arrCatalog["134"].addImage("photos/crafts 009.jpg",350,348);

arrCatalog["135"]=new Product("135","Bride and Groom - treble cleft",2.50);
arrCatalog["135"].setDescription("Bride and groom stamp mounted on suede paper with gold edging. \nCongratulations sticker and small brass treble clef embellishment to finish. 5\" square.");
arrCatalog["135"].setThumbnail("photos/thumbnails/crafts 005.jpg",148,150);
arrCatalog["135"].addImage("photos/crafts 005.jpg",345,350);

arrCatalog["136"]=new Product("136","Bride and Groom - music",2.80);
arrCatalog["136"].setDescription("Bride and groom stamp. \nBackground consists of music design, in embossed gold and copper. A5.");
arrCatalog["136"].setThumbnail("photos/thumbnails/crafts 004.jpg",108,150);
arrCatalog["136"].addImage("photos/crafts 004.jpg",289,400);

arrCatalog["138"]=new Product("138","Old wedding with music sheet",2.00);
arrCatalog["138"].setDescription("Victorian theme wedding sticker, mounted on a small sheet of music. \nSmall brass treble cleft embellishment, and pair of gold rings to decorate. A6.");
arrCatalog["138"].setThumbnail("photos/thumbnails/crafts 013.jpg",112,150);
arrCatalog["138"].addImage("photos/crafts 013.jpg",210,275);

arrCatalog["139"]=new Product("139","Old wedding with music stand",2.00);
arrCatalog["139"].setDescription("Victorian theme wedding sticker, mounted on cream and brown papers. \nBlack musical notes and a music stand are used to decorate. A6.");
arrCatalog["139"].setThumbnail("photos/thumbnails/crafts 012.jpg",99,150);
arrCatalog["139"].addImage("photos/crafts 012.jpg",215,325);

arrCatalog["125"]=new Product("125","VA1 - Victorian Small",22.99);
arrCatalog["125"].setDescription("Blank photograph album, decorated with a victorian image, triple mounted in shades of green. Ivory and pale green satin ribbon bind the album. 6x8\". \nComes with matching box. Acid and lignin free. \n40 pages of handmade mulberry paper.");
arrCatalog["125"].setThumbnail("photos/thumbnails/Albums 002.jpg",150,102);
arrCatalog["125"].addImage("photos/Albums 002.jpg",300,204);
arrCatalog["125"].setType(ALBUM);

arrCatalog["126"]=new Product("126","BA1 - Baby",22.99);
arrCatalog["126"].setDescription("Blank photograph album, decorated with a metal plaque, optionally mounted on pastel shades of rainbow paper. Silver baby-related words surround the main image. 6x8\". \nComes with matching box. Acid and lignin free. 40 pages of handmade mulberry paper. \nCheck other pictures available.");
arrCatalog["126"].setThumbnail("photos/thumbnails/albumBaby.jpg",150,115);
arrCatalog["126"].addImage("photos/albumBaby.jpg",300,230);
arrCatalog["126"].addImage("photos/Show 008.jpg",300,225);
arrCatalog["126"].addImage("photos/Stuff2 001.jpg",300,221);
arrCatalog["126"].addImage("photos/Albums 003.jpg",300,226);
arrCatalog["126"].addOption("Plaque","Hands");
arrCatalog["126"].addOption("Plaque","Feet");
arrCatalog["126"].addOption("Mounting","Pastels");
arrCatalog["126"].addOption("Mounting","None");
arrCatalog["126"].setType(ALBUM);

arrCatalog["127"]=new Product("127","WA1-3DW flowers",22.99);
arrCatalog["127"].setDescription("Blank photograph album. Decorated with a 3D image mounted on suede paper, with co-ordinating ribbon and small handmade paper roses. 6x8\". \nComes with handmade paper box. Acid and lignin free. 40 pages of handmade mulberry paper. \nNB: The album will be white, not brown as shown - see baby album for picture.");
arrCatalog["127"].setThumbnail("photos/thumbnails/Wedding Items 005.jpg",150,115);
arrCatalog["127"].addImage("photos/Wedding Items 005.jpg",300,230);
arrCatalog["127"].addOption("Mounting","Burgundy");
arrCatalog["127"].addOption("Mounting","Green");
arrCatalog["127"].addOption("Mounting","Pale blue");
arrCatalog["127"].addOption("Mounting","Pale beige");
arrCatalog["127"].setType(ALBUM);
arrCatalog["127"].markAsOutOfStock();

arrCatalog["128"]=new Product("128","SP1P - pink",5.00);
arrCatalog["128"].setDescription("Traditional wooden spoon, decorated with ribbon in 2 shades of pink, and finished with small paper roses. 8\". \nComes in a display box with a clear plastic lid.");
arrCatalog["128"].setThumbnail("photos/thumbnails/Wedding Items 001.jpg",35,150);
arrCatalog["128"].addImage("photos/Wedding Items 001.jpg",82,350);
arrCatalog["128"].setType(WOOD);

arrCatalog["129"]=new Product("129","SP1Y - yellow",5.00);
arrCatalog["129"].setDescription("Traditional wooden spoon, decorated with black, white and gold patterned ribbon. Finished with delicate pale yellow paper roses. 8\". \nComes in a display box with a clear plastic lid.");
arrCatalog["129"].setThumbnail("photos/thumbnails/Wedding Items 002.jpg",36,150);
arrCatalog["129"].addImage("photos/Wedding Items 002.jpg",83,350);
arrCatalog["129"].setType(WOOD);

arrCatalog["130"]=new Product("130","SP1O - orange",7.50);
arrCatalog["130"].setDescription("Traditional wooden spoon, decorated with orange ribbon and a thin line of gold glitter. The spoon face is decorated with delicate handmade paper roses and a gold glitter design. 12\". \nComes in a display box with a clear plastic lid.");
arrCatalog["130"].setThumbnail("photos/thumbnails/Wedding Items 004a.jpg",34,150);
arrCatalog["130"].addImage("photos/Wedding Items 004a.jpg",85,375);
arrCatalog["130"].setType(WOOD);

arrCatalog["131"]=new Product("131","RP1 - purple",5.00);
arrCatalog["131"].setDescription("Traditional rolling pin, decorated with purple, lilac and pink patterned ribbon. Finished with matching purple ribbon, bows and delicate handmade paper roses. 6\" long. \nComes in a display box with a clear plastic lid.");
arrCatalog["131"].setThumbnail("photos/thumbnails/Wedding Items 003.jpg",53,150);
arrCatalog["131"].addImage("photos/Wedding Items 003.jpg",114,325);
arrCatalog["131"].setType(WOOD);

arrCatalog["132"]=new Product("132","VA2-Large",14.99);
arrCatalog["132"].setDescription("Blank photograph album. Decorated with a selection of victorian images. \nCentre picture mounted on 3 shades of suede paper, and victorian clock face is embossed to finish. 10x8\". Acid and lignin free. \nComes with matching box. 18 pages of handmade mulberry paper. \nNB: The design will be mounted on brown material, in the centre of a white album - so it will differ from the picture slightly.");
arrCatalog["132"].setThumbnail("photos/thumbnails/Albums 006.jpg",118,150);
arrCatalog["132"].addImage("photos/Albums 006.jpg",315,400);
arrCatalog["132"].setType(ALBUM);
arrCatalog["132"].markAsOutOfStock();

arrCatalog["140"]=new Product("140","Good Luck - Metal Plaque",3.00);
arrCatalog["140"].setDescription("Metal plaque engraved with a metal plaque, mounted on shades of co-ordinating paper/card. \nEmbossed Good Luck message to finish in matching ink. \nCheck other pictures available. A5.");
arrCatalog["140"].setThumbnail("photos/thumbnails/crafts 008.jpg",105,150);
arrCatalog["140"].addImage("photos/crafts 008.jpg",280,400);
arrCatalog["140"].addImage("photos/crafts 010.jpg",284,400);
arrCatalog["140"].addOption("Plaque","palm");
arrCatalog["140"].addOption("Plaque","flowers");
arrCatalog["140"].addOption("Plaque","star");
arrCatalog["140"].addOption("Plaque","travel");
arrCatalog["140"].addOption("Plaque","lighthouse");
arrCatalog["140"].addOption("Plaque","heart");
arrCatalog["140"].addOption("Plaque","passport");
arrCatalog["140"].addOption("Colour","green");
arrCatalog["140"].addOption("Colour","purple");
arrCatalog["140"].addOption("Colour","pink");
arrCatalog["140"].addOption("Card","white");
arrCatalog["140"].addOption("Card","cream");

arrCatalog["142"]=new Product("142","WA2-3DW",22.99);
arrCatalog["142"].setDescription("Blank photograph album. Decorated with a 3D image of a bride and groom, mounted on burgundy suede paper. Ivory and burgundy ribbon bind the album. 6x8\". \nComes with matching box. 40 pages. \nNB: The album will be white, not brown as shown - see baby album for picture.");
arrCatalog["142"].setThumbnail("photos/thumbnails/crafts 007.jpg",150,112);
arrCatalog["142"].addImage("photos/crafts 007.jpg",300,225);
arrCatalog["142"].setType(ALBUM);
arrCatalog["142"].markAsOutOfStock();

arrCatalog["143"]=new Product("143","SP1W - white",5.00);
arrCatalog["143"].setDescription("Traditional wooden spoon, decorated with white lace. Finished with a white tag, embossed with 'With Love' in gold print. 8\". \nComes in a display box with a clear plastic lid.");
arrCatalog["143"].setThumbnail("photos/thumbnails/crafts 017.jpg",31,150);
arrCatalog["143"].addImage("photos/crafts 017.jpg",72,350);
arrCatalog["143"].setType(WOOD);

arrCatalog["144"]=new Product("144","SP1PB - pale blue",5.00);
arrCatalog["144"].setDescription("Traditional wooden spoon, decorated with pale blue ribbon. Finished with a white paper rose and a silver horseshoe. 8\". \nComes in a display box with a clear plastic lid.");
arrCatalog["144"].setThumbnail("photos/thumbnails/crafts 016.jpg",30,150);
arrCatalog["144"].addImage("photos/crafts 016.jpg",71,350);
arrCatalog["144"].setType(WOOD);

arrCatalog["145"]=new Product("145","SP1NB - navy blue tartan",5.00);
arrCatalog["145"].setDescription("Traditional wooden spoon, decorated with navy blue tartan ribbon. Finished with a navy blue heavy lace handle, and a coordinating green paper rose. 8\". \nComes in a display box with a clear plastic lid.");
arrCatalog["145"].setThumbnail("photos/thumbnails/crafts 019.jpg",32,150);
arrCatalog["145"].addImage("photos/crafts 019.jpg",74,350);
arrCatalog["145"].setType(WOOD);

arrCatalog["146"]=new Product("146","Champagne flutes and keepsake box",20.00);
arrCatalog["146"].setDescription("Pair of glass champagne flutes, engraved with either a silver (platinum) or gold line (please specify). Height of glasses around 16\". \nWill be presented in a strong handmade paper keepsake box, decorated with cream ribbon (or other available colour). Flutes will be presented in a box filled with tissue paper co-ordinated with your chosen ribbon, and will also be wrapped in bubble wrap if posting is required");
arrCatalog["146"].setThumbnail("photos/thumbnails/crafts 002.jpg",40,150);
arrCatalog["146"].addImage("photos/crafts 002.jpg",100,375);
arrCatalog["146"].addOption("Glass","Gold");
arrCatalog["146"].addOption("Glass","Silver");
arrCatalog["146"].addOption("Box decoration","Cream ribbon");
arrCatalog["146"].addOption("Box decoration","Pale pink ribbon");
arrCatalog["146"].addOption("Box decoration","Lilac ribbon");
arrCatalog["146"].addOption("Box decoration","Peach ribbon");
arrCatalog["146"].addOption("Box decoration","Yellow ribbon");
arrCatalog["146"].addOption("Box decoration","Tartan ribbon");
arrCatalog["146"].setType(GLASSBOX);

arrCatalog["147"]=new Product("147","Ruby - vinyl with roses",3.00);
arrCatalog["147"].setDescription("Red Ruby Wedding text, cut from vinyl. Mounted on white card and red card. \nOptional paper roses or feather to decorate. A5. \nCheck other pictures available. \nPlease send us an email if you require one of these cards in another colour e.g. yellow for a Golden Wedding.");
arrCatalog["147"].setThumbnail("photos/thumbnails/ruby1a.jpg",105,150);
arrCatalog["147"].addImage("photos/ruby1a.jpg",279,400);
arrCatalog["147"].addImage("photos/RubyFeather.jpg",287,400);
arrCatalog["147"].addOption("Option","Roses");
arrCatalog["147"].addOption("Option","Feather");

arrCatalog["149"]=new Product("149","Anniversary Rose bouquet",3.00);
arrCatalog["149"].setDescription("Background scroll printed in red ink, mounted on co-ordinating red card. \n3 handmade roses tied in a bouquet decorate the front, with a red bow to finish. Metallic Happy Anniversary greeting beneath. A5. If you require one of these cards in another colour e.g. yellow for a Golden Wedding, please select one of the options below.");
arrCatalog["149"].setThumbnail("photos/thumbnails/Ruby3Flowers.jpg",103,150);
arrCatalog["149"].addImage("photos/Ruby3Flowers.jpg",274,400);
arrCatalog["149"].addOption("Colour","Red");
arrCatalog["149"].addOption("Colour","Gold");
arrCatalog["149"].addOption("Colour","Orange");
arrCatalog["149"].addOption("Colour","Green");
arrCatalog["149"].addOption("Colour","Lilac");
arrCatalog["149"].addOption("Colour","Blue");
arrCatalog["149"].addOption("Greeting");

arrCatalog["150"]=new Product("150","Ruby - Red glitter heart",3.25);
arrCatalog["150"].setDescription("A red glitter heart with 4 red scrolls made from red wire, each finished with a gold bead. Mounted on red card. \nMetallic Happy Anniversary greeting and a '40' to finish. A5.");
arrCatalog["150"].setThumbnail("photos/thumbnails/RubyHeart.jpg",105,150);
arrCatalog["150"].addImage("photos/RubyHeart.jpg",279,400);

arrCatalog["151"]=new Product("151","Bead and Rose bouquet",3.25);
arrCatalog["151"].setDescription("3 roses and a selection of small stones tied into a bouquet. Matching ribbon band and metallic number to finish. \nSuitable for birthday or anniversary. A5. \nCheck other pictures available.");
arrCatalog["151"].setThumbnail("photos/thumbnails/gold bouquet 50.jpg",106,150);
arrCatalog["151"].addImage("photos/gold bouquet 50.jpg",283,400);
arrCatalog["151"].addImage("photos/RubyBouquet.jpg",283,400);
arrCatalog["151"].addImage("photos/flower bouquet anniv msg.jpg",282,400);
arrCatalog["151"].addOption("Colour","Yellow");
arrCatalog["151"].addOption("Colour","Red");
arrCatalog["151"].addOption("Colour","Orange");
arrCatalog["151"].addOption("Greeting (optional)");
arrCatalog["151"].addOption("Number (optional)");

arrCatalog["152"]=new Product("152","BA1-60",22.99);
arrCatalog["152"].setDescription("Blank photograph album. Decorated with a birthday greeting shaded with chalk, age (60) confetti and feather effect ribbon. Mounted with cream and brown card. 6x8\". \nComes with matching box. 40 pages of handmade mulberry paper. NB: The album will be white, not brown as shown.");
arrCatalog["152"].setThumbnail("photos/thumbnails/Birthday 2.jpg",150,115);
arrCatalog["152"].addImage("photos/Birthday 2.jpg",300,230);
arrCatalog["152"].setType(ALBUM);
arrCatalog["152"].markAsOutOfStock();

arrCatalog["153"]=new Product("153","LB1 - Lavender",24.99);
arrCatalog["153"].setDescription("Wooden keepsake box made from MDF, painted in pale lilac and decorated with a dried lavender sprig tied with ribbon. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["153"].setThumbnail("photos/thumbnails/show 007.jpg",150,130);
arrCatalog["153"].addImage("photos/show 007.jpg",350,304);
arrCatalog["153"].addImage("photos/lilac open.jpg",289,350);
arrCatalog["153"].addImage("photos/lilac side.jpg",350,222);
arrCatalog["153"].addImage("photos/show 006.jpg",350,281);
arrCatalog["153"].setType(BOX);

arrCatalog["155"]=new Product("155","CB1 - Butterfly",24.99);
arrCatalog["155"].setDescription("Wooden keepsake box made from MDF, painted cream. Decorated with a butterfly coloured with gold and green glitter, triple mounted on cream and gold card. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["155"].setThumbnail("photos/thumbnails/cream1.jpg",150,119);
arrCatalog["155"].addImage("photos/cream1.jpg",350,328);
arrCatalog["155"].addImage("photos/gold green butterfly.jpg",350,312);
arrCatalog["155"].addImage("photos/cream open.jpg",288,350);
arrCatalog["155"].addImage("photos/cream side.jpg",350,232);
arrCatalog["155"].addImage("photos/cream diagonal.jpg",350,277);
arrCatalog["155"].setType(BOX);

arrCatalog["156"]=new Product("156","GB1 - Otters",24.99);
arrCatalog["156"].setDescription("Wooden keepsake box made from MDF, painted in pale green. Decorated with a print of otters, double mounted on shades of green suede paper. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["156"].setThumbnail("photos/thumbnails/green1.jpg",150,119);
arrCatalog["156"].addImage("photos/green1.jpg",350,277);
arrCatalog["156"].addImage("photos/show 013.jpg",350,297);
arrCatalog["156"].addImage("photos/gb side open.JPG",262,350);
arrCatalog["156"].addImage("photos/gb straight side.JPG",262,350);
arrCatalog["156"].setType(BOX);

arrCatalog["157"]=new Product("157","LB2 - Fairy",24.99);
arrCatalog["157"].setDescription("Wooden keepsake box, precision machined from MDF using CNC and painted in pale lilac. Lid secured with special hinges made of brass and the top is decorated with a 3D image of a flower fairy, triple mounted in co-ordinating shades of purple card. \nChildproof lid design - requires pushing back, before being lifted. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["157"].setThumbnail("photos/thumbnails/Show 003.jpg",150,121);
arrCatalog["157"].addImage("photos/Show 003.jpg",350,283);
arrCatalog["157"].addImage("photos/lilac open.jpg",289,350);
arrCatalog["157"].addImage("photos/lilac side.jpg",350,222);
arrCatalog["157"].addImage("photos/lilac fairy.jpg",250,262);
arrCatalog["157"].addImage("photos/Show 004.jpg",350,262);
arrCatalog["157"].setType(BOX);

arrCatalog["159"]=new Product("159","Champagne flutes (x2)",15.99);
arrCatalog["159"].setDescription("Pair of glass champagne flutes, decorated with either a silver or gold line (please specify). Height of glasses around 16\". These will be despatched without a presentation box.");
arrCatalog["159"].setThumbnail("photos/thumbnails/crafts 002.jpg",40,150);
arrCatalog["159"].addImage("photos/crafts 002.jpg",100,375);
arrCatalog["159"].setType(GLASS);

arrCatalog["160"]=new Product("160","WB1-NBW",24.99);
arrCatalog["160"].setDescription("Wooden keepsake box, painted white. Decorated with 3 small baby-related black and white photographs, mounted on silver and black card. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom. \nCurrently OUT OF STOCK");
arrCatalog["160"].setThumbnail("photos/thumbnails/baby top.jpg",150,121);
arrCatalog["160"].addImage("photos/baby top.JPG",350,282);
arrCatalog["160"].addImage("photos/white box 1.JPG",350,229);
arrCatalog["160"].addImage("photos/white open.JPG",287,350);
arrCatalog["160"].markAsOutOfStock();
arrCatalog["160"].setType(BOX);

arrCatalog["161"]=new Product("161","GB2 - Girl",24.99);
arrCatalog["161"].setDescription("Wooden keepsake box made from MDF, painted in pale green. Decorated with a 3D image of a girl, triple mounted on shades of green and deep rose suede paper. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["161"].setThumbnail("photos/thumbnails/Show 011.jpg",150,118);
arrCatalog["161"].addImage("photos/Show 011.jpg",350,276);
arrCatalog["161"].addImage("photos/Show 012.jpg",298,350);
arrCatalog["161"].addImage("photos/gb side open.JPG",262,350);
arrCatalog["161"].addImage("photos/gb straight side.JPG",262,350);
arrCatalog["161"].setType(BOX);

arrCatalog["162"]=new Product("162","Travel - cork and leaves",3.00);
arrCatalog["162"].setDescription("Small round letters spelling the country (please specify) required. Cork sheet wrapped in a toffee coloured ribbon design. Skeleton leaves mounted behind - and on top of - the cork. \nDouble-mounted tag, small gold clock face and travel emblem mounted to finish. A journey quote edged with chalk completes the design. A5.");
arrCatalog["162"].setThumbnail("photos/thumbnails/show 018.jpg",109,150);
arrCatalog["162"].addImage("photos/show 018.jpg",290,400);
arrCatalog["162"].addOption("Country");
arrCatalog["162"].addOption("Card","Cream");
arrCatalog["162"].addOption("Card","White");

arrCatalog["163"]=new Product("163","Get Well Soon - wax",1.50);
arrCatalog["163"].setDescription("Wax square in a criss cross design, edged with silver glitter. Matching greeting is placed below. 6x3\"");
arrCatalog["163"].setThumbnail("photos/thumbnails/waxsilverglitter.jpg",56,150);
arrCatalog["163"].addImage("photos/waxsilverglitter.jpg",141,375);
arrCatalog["163"].addOption("Colour","Black/Silver");
arrCatalog["163"].addOption("Colour","Copper/Gold");
arrCatalog["163"].addOption("Colour","Green/White");
arrCatalog["163"].addOption("Colour","Blue/White");
arrCatalog["163"].addOption("Colour","Pink/White");

arrCatalog["164"]=new Product("164","3 flowers A5",3.00);
arrCatalog["164"].setDescription("3 pressed flowers, each mounted in clear plastic windows. A5. Greeting is either a silver sticker or a number made from co-ordinating card - please specify. \nCheck other pictures available.");
arrCatalog["164"].setThumbnail("photos/thumbnails/3 flowers pink50.jpg",106,150);
arrCatalog["164"].addImage("photos/3 flowers pink50.JPG",283,400);
arrCatalog["164"].addImage("photos/3flowers blue.JPG",286,400);
arrCatalog["164"].addImage("photos/3 pansies A5.JPG",286,400);
arrCatalog["164"].addOption("Flower colours","Pinks");
arrCatalog["164"].addOption("Flower colours","Blue");
arrCatalog["164"].addOption("Flower colours","Purple/Yellow");
arrCatalog["164"].addOption("Greeting","Happy Birthday");
arrCatalog["164"].addOption("Greeting","None");
arrCatalog["164"].addOption("Age (Optional)");

arrCatalog["165"]=new Product("165","Flowers on Acetate",1.25);
arrCatalog["165"].setDescription("Flowers coloured with pens on acetate, mounted behind a square aperture, optionally with silver holographic paper as a background. 4x3\". \nCheck other pictures available.");
arrCatalog["165"].setThumbnail("photos/thumbnails/cards 062.jpg",121,150);
arrCatalog["165"].addImage("photos/cards 062.JPG",201,250);
arrCatalog["165"].addImage("photos/cards 057.JPG",201,250);
arrCatalog["165"].addOption("Flowers","Rose");
arrCatalog["165"].addOption("Flowers","Sunflowers");
arrCatalog["165"].addOption("Background","Silver");
arrCatalog["165"].addOption("Background","None");

arrCatalog["166"]=new Product("166","Lilac flowers bouquet",2.50);
arrCatalog["166"].setDescription("Lilac card with matching ribbon bouquet, mounted on a silver backing within a cream frame. A6.");
arrCatalog["166"].setThumbnail("photos/thumbnails/cards 064.jpg",106,150);
arrCatalog["166"].addImage("photos/cards 064.JPG",231,325);

arrCatalog["167"]=new Product("167","Pastel wax",1.25);
arrCatalog["167"].setDescription("Pale pastel colours blended using melted wax, with silver symbols or stickers to decorate. 4\" square. See other pictures available. \nNo 2 will be the same.");
arrCatalog["167"].setThumbnail("photos/thumbnails/hello.jpg",147,150);
arrCatalog["167"].addImage("photos/hello.JPG",246,250);
arrCatalog["167"].addImage("photos/justanote.JPG",250,245);
arrCatalog["167"].addImage("photos/justanotesquare.JPG",250,247);
arrCatalog["167"].addImage("photos/thinkingofyou.JPG",250,250);
arrCatalog["167"].addOption("Decoration","Swirls");
arrCatalog["167"].addOption("Decoration","Symbols");

arrCatalog["168"] = new Product("168","Mixed wax",1.50);
arrCatalog["168"].setDescription("Melted wax design using pink ink, optionally mixed with lilac, red or silver inks and silver greeting. A6. \nCheck other pictures available.");
arrCatalog["168"].setThumbnail("photos/thumbnails/cards 088.jpg",105,150);
arrCatalog["168"].addImage("photos/cards 088.jpg",224,325);
arrCatalog["168"].addImage("photos/waxpink.jpg",219,325);
arrCatalog["168"].addImage("photos/waxpalelilacsilver.jpg",212,325);
arrCatalog["168"].addImage("photos/waxredpink.jpg",223,325);
arrCatalog["168"].addImage("photos/waxpinksilverlines.jpg",227,325);
arrCatalog["168"].addImage("photos/pinkjustanote.jpg",325,222);
arrCatalog["168"].addOption("Colour","Pink");
arrCatalog["168"].addOption("Colour","Pink/Silver");
arrCatalog["168"].addOption("Colour","Red/Pink");
arrCatalog["168"].addOption("Colour","Pink/Lilac/Silver");
arrCatalog["168"].addOption("Greeting","Just a Note");
arrCatalog["168"].addOption("Greeting","Hello");
arrCatalog["168"].addOption("Greeting","Thinking of You");
arrCatalog["168"].addOption("Greeting","Happy Birthday");
arrCatalog["168"].addOption("Greeting","None");

arrCatalog["169"]=new Product("169","Material Birthday",1.50);
arrCatalog["169"].setDescription("Material flowers edged with gold or silver glitter. A6. Colours of flowers may vary.");
arrCatalog["169"].setThumbnail("photos/thumbnails/P6170068.JPG",118,150);
arrCatalog["169"].addImage("photos/P6170068.JPG",236,300);
arrCatalog["169"].addOption("Glitter","Gold");
arrCatalog["169"].addOption("Glitter","Silver");

arrCatalog["170"]=new Product("170","Fuschias A5",3.00);
arrCatalog["170"].setDescription("Fuschia flowers stickers in gold, mounted on co-ordinating shades of pearlescent paper. Optional number to celebrate a specific birthday. A5. \nCheck other pictures available.");
arrCatalog["170"].setThumbnail("photos/thumbnails/fuschias hb italic.jpg",106,150);
arrCatalog["170"].addImage("photos/fuschias hb italic.jpg",284,400);
arrCatalog["170"].addImage("photos/fuschias hb round.jpg",279,400);
arrCatalog["170"].addOption("Colour","Pink/Purple");
arrCatalog["170"].addOption("Colour","Pinks");
arrCatalog["170"].addOption("Colour","Purple");
arrCatalog["170"].addOption("Colour","Blue");
arrCatalog["170"].addOption("Card colour","Cream");
arrCatalog["170"].addOption("Card colour","White");
arrCatalog["170"].addOption("Age (leave blank for none)");

arrCatalog["171"]=new Product("171","Plane Leaving",2.00);
arrCatalog["171"].setDescription("Travel related paper, with plane and postcard. Small stamps and coins also included - designs may vary. A6");
arrCatalog["171"].setThumbnail("photos/thumbnails/P6170088.jpg",105,150);
arrCatalog["171"].addImage("photos/P6170088.jpg",227,325);

arrCatalog["172"]=new Product("172","Hedgehog A5",3.00);
arrCatalog["172"].setDescription("Baby hedgehog sticker, with It's a Girl or It's a Boy sticker. Triple mounted on shades of matching card. A5.");
arrCatalog["172"].setThumbnail("photos/thumbnails/boy hedgehog a5.jpg",105,150);
arrCatalog["172"].addImage("photos/boy hedgehog a5.JPG",280,400);
arrCatalog["172"].addImage("photos/baby girl 011.JPG",281,400);
arrCatalog["172"].addOption("Colour","Blue");
arrCatalog["172"].addOption("Colour","Pink");

arrCatalog["173"]=new Product("173","Baby hands A5",3.00);
arrCatalog["173"].setDescription("Baby hands design on a metal plaque, triple mounted on shades of matching card. \nMatching twine tied about the spine of the card. A5.");
arrCatalog["173"].setThumbnail("photos/thumbnails/baby hands.jpg",106,150);
arrCatalog["173"].addImage("photos/baby hands.JPG",284,400);
arrCatalog["173"].addOption("Colour","Blue");
arrCatalog["173"].addOption("Colour","Pink");
arrCatalog["173"].addOption("Colour","Yellow");
arrCatalog["173"].addOption("Colour","Green");

arrCatalog["174"]=new Product("174","Bride and Groom - material",2.50);
arrCatalog["174"].setDescription("Bride and groom stamp mounted on music themed material, printed in shades of brown, gold and copper. 5\" square.");
arrCatalog["174"].setThumbnail("photos/thumbnails/crafts 014.jpg",146,150);
arrCatalog["174"].addImage("photos/Crafts 014.jpg",345,350);

arrCatalog["175"]=new Product("175","Baby photo A5",3.00);
arrCatalog["175"].setDescription("Black and white photograph of a baby holding his father's hand. Mounted on black card. \nSilver greeting beneath. A5.");
arrCatalog["175"].setThumbnail("photos/thumbnails/bw hands baby boy.jpg",104,150);
arrCatalog["175"].addImage("photos/bw hands baby boy.JPG",279,400);
arrCatalog["175"].addOption("Greeting","Its a Boy");
arrCatalog["175"].addOption("Greeting","Its A Girl");
arrCatalog["175"].addOption("Greeting","Congratulations");

arrCatalog["176"]=new Product("176","Pram A5",3.00);
arrCatalog["176"].setDescription("Baby boy or girl peering out of a pram, mounted on 3 shades of matching card. \nGreeting beneath the design to finish. A5.");
arrCatalog["176"].setThumbnail("photos/thumbnails/boy pram a5.jpg",105,150);
arrCatalog["176"].addImage("photos/boy pram a5.JPG",280,400);
arrCatalog["176"].addOption("Colour","Blue");
arrCatalog["176"].addOption("Colour","Pink");
arrCatalog["176"].addOption("Greeting","Its a Boy");
arrCatalog["176"].addOption("Greeting","Its a Girl");
arrCatalog["176"].addOption("Greeting","Congratulations");

arrCatalog["177"]=new Product("177","Material Best Wishes",1.50);
arrCatalog["177"].setDescription("Material flowers edged with gold or silver glitter. A6. \nColours of flowers may vary.");
arrCatalog["177"].setThumbnail("photos/thumbnails/P6170067.JPG",150,131);
arrCatalog["177"].addImage("photos/P6170067.JPG",325,288);
arrCatalog["177"].addOption("Glitter","Gold");
arrCatalog["177"].addOption("Glitter","Silver");

arrCatalog["178"]=new Product("178","Mothers Decoupage",2.50);
arrCatalog["178"].setDescription("Rose built up using 4 layers. Mounted on co-ordinating paper. Hand-written Happy Mothers Day greeting below. 5\". \nFlower may vary.");
arrCatalog["178"].setThumbnail("photos/thumbnails/flower 004.JPG",148,150);
arrCatalog["178"].addImage("photos/flower 004.JPG",346,350);
arrCatalog["178"].addOption("Flower","Yellow rose");
arrCatalog["178"].addOption("Flower","Red rose");

arrCatalog["179"]=new Product("179","Wedding postcard",2.00);
arrCatalog["179"].setDescription("Wedding postcard with lace border. A6. See other pictures available");
arrCatalog["179"].setThumbnail("photos/thumbnails/P6170090.JPG",102,150);
arrCatalog["179"].addImage("photos/P6170090.JPG",219,325);
arrCatalog["179"].addOption("Greeting","Congratulations");
arrCatalog["179"].addOption("Greeting","Marriage");

arrCatalog["180"]=new Product("180","Mothers Day Gold topper",2.00);
arrCatalog["180"].setDescription("Gold sun motif with matching gold strip beneath, made from handmade paper. Gold Happy Mothers Day greeting below. 5\". \nFlower may vary.");
arrCatalog["180"].setThumbnail("photos/thumbnails/sun 005.JPG",150,149);
arrCatalog["180"].addImage("photos/sun 005.JPG",350,347);

arrCatalog["181"]=new Product("181","Mothers Day vase",2.50);
arrCatalog["181"].setDescription("3 handmade flowers with beaded centres, placed behind a purple vase tied with sheer ribbon. Lilac Happy Mothers Day verse below. A6. \nFlower & vase colour may vary slightly.");
arrCatalog["181"].setThumbnail("photos/thumbnails/vase 006.JPG",98,150);
arrCatalog["181"].addImage("photos/vase 006.JPG",212,325);

arrCatalog["182"]=new Product("182","Mothers Day metal plaque",3.00);
arrCatalog["182"].setDescription("Metal plaque with a design of 3 flowers. Triple mounted on shades of purple card. \nA strip of card with a lilac Happy Mothers Day greeting is fastened with silver eyelets, again in a flower design. A6");
arrCatalog["182"].setThumbnail("photos/thumbnails/md 008.JPG",121,150);
arrCatalog["182"].addImage("photos/md 008.JPG",201,250);

arrCatalog["183"]=new Product("183","Mothers Day 2 flowers",2.50);
arrCatalog["183"].setDescription("2 flowers mounted on a square of lilac pearlescenet paper, placed behind a clear window edged with silver. \nHappy Mothers Day greeting is stamped below. 6x3\". \nFlowers may vary.");
arrCatalog["183"].setThumbnail("photos/thumbnails/Show 009.JPG",55,150);
arrCatalog["183"].addImage("photos/Show 009.JPG",138,375);

arrCatalog["184"]=new Product("184","Mothers Day Pansy",2.50);
arrCatalog["184"].setDescription("Large pressed pansy mounted on a pearlescent card, behind a clear window edged with silver. \nHappy Mothers Day greeting is stamped below in lilac. A6. \nFlower may vary.");
arrCatalog["184"].setThumbnail("photos/thumbnails/Show 010.JPG",100,150);
arrCatalog["184"].addImage("photos/Show 010.JPG",218,325);

arrCatalog["185"]=new Product("185","WB2 - Wedding",24.99);
arrCatalog["185"].setDescription("Wooden keepsake box, painted white. Decorated with a 3 small wedding-related black and white photographs, mounted on silver and black card. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.\nCurrently OUT OF STOCK");
arrCatalog["185"].setThumbnail("photos/thumbnails/wedding top.jpg",150,121);
arrCatalog["185"].addImage("photos/wedding top.JPG",350,282);
arrCatalog["185"].addImage("photos/white box 1.JPG",350,229);
arrCatalog["185"].addImage("photos/white open.JPG",287,350);
arrCatalog["160"].markAsOutOfStock();
arrCatalog["185"].setType(BOX);

arrCatalog["186"]=new Product("186","BB1 - Travel",24.99);
arrCatalog["186"].setDescription("Wooden keepsake box, painted pale blue. Decorated with either a travel theme (palm trees, waterfall or tropical flower photograph), triple mounted on co-ordinating colours. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["186"].addOption("Photograph","Palm trees");
arrCatalog["186"].addOption("Photograph","Tropical flower");
arrCatalog["186"].addOption("Photograph","Waterfall");
arrCatalog["186"].setType(BOX);

arrCatalog["187"]=new Product("187","Santa",1.50);
arrCatalog["187"].setDescription("Father Christmas and his reindeers flying across the sky. Background of mountains etc. created from melted wax. A6. \nNo 2 will be the same.");
arrCatalog["187"].setThumbnail("photos/thumbnails/waxsanta.JPG",150,100);
arrCatalog["187"].addImage("photos/waxsanta.JPG",325,217);

arrCatalog["188"]=new Product("188","Xmas Trees",1.50);
arrCatalog["188"].setDescription("A cluster of Christmas trees, coloured with felt pens. Red and gold glitter are used for the stars at the tip of the trees. A6.");
arrCatalog["188"].setThumbnail("photos/thumbnails/waxxmastrees.JPG",150,103);
arrCatalog["188"].addImage("photos/waxxmastrees.JPG",325,223);

arrCatalog["189"]=new Product("189","Bride and Groom - Suede",2.50);
arrCatalog["189"].setDescription("Bride and groom stamp embossed in gold or silver, mounted on suede paper. A5.");
arrCatalog["189"].setThumbnail("photos/thumbnails/wedding silver burgundy.jpg",102,150);
arrCatalog["189"].addImage("photos/wedding burg silver.jpg",279,400);
arrCatalog["189"].addImage("photos/cards 012.jpg",350,346);
arrCatalog["189"].addOption("Mounting","Dusky pink suede");
arrCatalog["189"].addOption("Mounting","Pale beige suede");
arrCatalog["189"].addOption("Mounting","Burgundy suede");
arrCatalog["189"].addOption("Mounting","Pale green suede");
arrCatalog["189"].addOption("Mounting","Dark green suede");
arrCatalog["189"].addOption("Mounting","Pale blue suede");
arrCatalog["189"].addOption("Border","Gold");
arrCatalog["189"].addOption("Border","Silver");

arrCatalog["190"]=new Product("190","Bride and Groom - Rose",2.50);
arrCatalog["190"].setDescription("Bride and groom stamp embossed with coloured ink and edged with gold or silver. Mounted on a strip of co-ordinating foam embossed with an art-deco rose design. \nSmall congratulations sticker beneath the main design, with gold or silver strips to finish. A5.");
arrCatalog["190"].setThumbnail("photos/thumbnails/wedding red rose.jpg",106,150);
arrCatalog["190"].addImage("photos/wedding red rose.jpg",283,400);
arrCatalog["190"].addImage("photos/wedding pink rose.jpg",283,400);
arrCatalog["190"].addOption("Colour","Red");
arrCatalog["190"].addOption("Colour","Pink");
arrCatalog["190"].addOption("Colour","Lilac/Purple");
arrCatalog["190"].addOption("Colour","Blue");
arrCatalog["190"].addOption("Colour","Yellow/Gold");
arrCatalog["190"].addOption("Colour","Orange");
arrCatalog["190"].addOption("Mounting","Gold");
arrCatalog["190"].addOption("Mounting","Silver");

arrCatalog["191"]=new Product("191","Get Well Soon Roses",1.50);
arrCatalog["191"].setDescription("Photographs of a rose, each surrounded by a matching border. Printed message beneath. A6.");
arrCatalog["191"].setThumbnail("photos/thumbnails/4 roses yellow.jpg",108,150);
arrCatalog["191"].addImage("photos/4 yellow roses.jpg",233,325);
arrCatalog["191"].addImage("photos/Cards 013.jpg",230,325);
arrCatalog["191"].addOption("Number of roses","3");
arrCatalog["191"].addOption("Number of roses","4");
arrCatalog["191"].addOption("Please specify colour");

arrCatalog["192"]=new Product("192","BB2 - Butterfly",24.99);
arrCatalog["192"].setDescription("Wooden keepsake box, painted pale blue. Decorated with a glitter butterfly design in shades of blue. Triple mounted on co-ordinating colours. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["192"].setThumbnail("photos/thumbnails/blue fly.jpg",150,121);
arrCatalog["192"].addImage("photos/blue fly.JPG",350,284);
arrCatalog["192"].addImage("photos/blue bfly1.JPG",350,321);
arrCatalog["192"].addImage("photos/blue box 1.JPG",350,229);
arrCatalog["192"].addImage("photos/blue open.JPG",287,350);
arrCatalog["192"].setType(BOX);

arrCatalog["193"]=new Product("193","Butterfly inks A5",3.00);
arrCatalog["193"].setDescription("Blended inks with butterfly, mounted on card.  Colours will vary. A5. \nNo 2 will be the same.");
arrCatalog["193"].setThumbnail("photos/thumbnails/Cards 007.jpg",150,105);
arrCatalog["193"].addImage("photos/Cards 007.jpg",400,279);
arrCatalog["193"].addImage("photos/Cards 008.jpg",400,277);
arrCatalog["193"].addImage("photos/Cards 005.jpg",287,400);
arrCatalog["193"].addImage("photos/Cards 006.jpg",288,400);
arrCatalog["193"].addOption("Direction","Landscape");
arrCatalog["193"].addOption("Direction","Portrait");
arrCatalog["193"].addOption("Mounting","Black");
arrCatalog["193"].addOption("Mounting","Burgundy");
arrCatalog["193"].addOption("Mounting","None");
arrCatalog["193"].addOption("Number of butterflies","1");
arrCatalog["193"].addOption("Number of butterflies","2");
arrCatalog["193"].addOption("Number of butterflies","3");
arrCatalog["193"].addOption("Greeting (leave blank for none)");

arrCatalog["194"]=new Product("194","Thinking Cat",1.50);
arrCatalog["194"].setDescription("Photograph of a black and white cat, surrounded by a black border. Printed message beneath reads 'Thinking of You'. A6.");
arrCatalog["194"].setThumbnail("photos/thumbnails/Cards 017.jpg",108,150);
arrCatalog["194"].addImage("photos/Cards 017.jpg",235,325);

arrCatalog["195"]=new Product("195","Mothers Day Rose",1.50);
arrCatalog["195"].setDescription("Photograph of a large rose, surrounded by a matching coloured border. Printed message beneath reads 'Happy Mothers Day'. A6.");
arrCatalog["195"].setThumbnail("photos/thumbnails/Cards 015.jpg",106,150);
arrCatalog["195"].addImage("photos/Cards 015.jpg",230,325);

arrCatalog["196"]=new Product("196","Birthday Cat",1.50);
arrCatalog["196"].setDescription("Photograph of a black and white cat, surrounded by a dark green border. Printed message beneath reads 'Happy Birthday'. A6.");
arrCatalog["196"].setThumbnail("photos/thumbnails/Cat green.jpg",107,150);
arrCatalog["196"].addImage("photos/Cat green.jpg",231,325);

arrCatalog["197"]=new Product("197","BB3 - Couple",24.99);
arrCatalog["197"].setDescription("Wooden keepsake box, painted pale blue. Decorated with a decoupage design of a cute couple dressed in brown and blue clothing, standing infront of a small black and white dog. Design has a 3D effect, made from 4 layers. Triple mounted on co-ordinating colours. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["197"].setThumbnail("photos/thumbnails/couple.jpg",150,119);
arrCatalog["197"].addImage("photos/couple.JPG",350,278);
arrCatalog["197"].addImage("photos/couple bluebrown.JPG",297,350);
arrCatalog["197"].addImage("photos/blue box 1.JPG",350,229);
arrCatalog["197"].addImage("photos/blue open.JPG",287,350);
arrCatalog["197"].setType(BOX);

arrCatalog["198"]=new Product("198","Aquatic",3.00);
arrCatalog["198"].setDescription("3 photographs with an aquatic theme: fish, fountain and palms, double mounted on shades of green paper. A5.");
arrCatalog["198"].setThumbnail("photos/thumbnails/Fish Fountain.jpg",150,105);
arrCatalog["198"].addImage("photos/Fish Fountain.jpg",400,279);
arrCatalog["198"].addOption("Greeting");

arrCatalog["199"]=new Product("199","Flower Thankyou",2.25);
arrCatalog["199"].setDescription("A photograph of a pink flower, triple mounted on shades of green paper. Black Thank You greeting beneath. 5x4\".");
arrCatalog["199"].setThumbnail("photos/thumbnails/flower thankyou.jpg",150,148);
arrCatalog["199"].addImage("photos/flower thankyou.jpg",275,272);

arrCatalog["200"]=new Product("200","Flower Bouquet",3.00);
arrCatalog["200"].setDescription("A bouquet of handmade paper roses and rosebuds, with leaves behind. Large greeting beneath, with optional birthday or anniversary number to decorate. A5.");
arrCatalog["200"].setThumbnail("photos/thumbnails/FlowerBouquet50.jpg",105,150);
arrCatalog["200"].addImage("photos/FlowerBouquet50.jpg",281,400);
arrCatalog["200"].addImage("photos/Pics 004.jpg",281,400);
arrCatalog["200"].addImage("photos/Pics 001.jpg",278,400);
arrCatalog["200"].addOption("Colour","Pink");
arrCatalog["200"].addOption("Colour","Yellow");
arrCatalog["200"].addOption("Colour","Red");
arrCatalog["200"].addOption("Age (leave blank if not required)");
arrCatalog["200"].addOption("Greeting","Happy Birthday");
arrCatalog["200"].addOption("Greeting","Happy Anniversary");
arrCatalog["200"].addOption("Greeting","Get Well Soon");
arrCatalog["200"].addOption("Greeting","Thinking of You");

arrCatalog["200b"]=new Product("200b","Flower Bouquet",3.00);
arrCatalog["200b"].setDescription("A bouquet of handmade paper roses and rosebuds, with leaves behind. Large greeting beneath, with optional anniversary number to decorate. \nA5.");
arrCatalog["200b"].setThumbnail("photos/thumbnails/flower bouquet anniv msg.jpg",105,150);
arrCatalog["200b"].addImage("photos/flower bouquet anniv msg.jpg",282,400);
arrCatalog["200b"].addImage("photos/FlowerBouquet50b.jpg",281,400);
arrCatalog["200b"].addImage("photos/Pics 004b.jpg",281,400);
arrCatalog["200b"].addImage("photos/Pics 001b.jpg",278,400);
arrCatalog["200b"].addOption("Colour","Pink");
arrCatalog["200b"].addOption("Colour","Yellow");
arrCatalog["200b"].addOption("Colour","Red");
arrCatalog["200b"].addOption("Anniversary Number (leave blank if not required)");
arrCatalog["200b"].addOption("Greeting");

arrCatalog["201"]=new Product("201","Flower inks",3.00);
arrCatalog["201"].setDescription("Blended inks with daffodil design in black. Mounted on burgundy suede paper.  Colours will vary. Black Happy Birthday greeting beneath. A5. \nNo 2 will be the same.");
arrCatalog["201"].setThumbnail("photos/thumbnails/flowers inks.jpg",108,150);
arrCatalog["201"].addImage("photos/flowers inks.jpg",288,400);

arrCatalog["202"]=new Product("202","LB3 - Butterfly",24.99);
arrCatalog["202"].setDescription("Wooden keepsake box, painted pale lilac. Decorated with a glitter butterfly design in shades of purple. Triple mounted on co-ordinating colours. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["202"].setThumbnail("photos/thumbnails/lilac fly.jpg",150,117);
arrCatalog["202"].addImage("photos/lilac fly.JPG",350,272);
arrCatalog["202"].addImage("photos/lilac bfly1.JPG",350,321);
arrCatalog["202"].addImage("photos/lilac side.JPG",350,222);
arrCatalog["202"].addImage("photos/lilac open.JPG",289,350);
arrCatalog["202"].setType(BOX);

arrCatalog["203"]=new Product("203","LB4 - Palms",24.99);
arrCatalog["203"].setDescription("Wooden keepsake box, painted pale lilac. Decorated with a photograph of palm trees during sunset. Double mounted on lilac and black card. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["203"].setThumbnail("photos/thumbnails/palms.jpg",150,119);
arrCatalog["203"].addImage("photos/palms.JPG",350,277);
arrCatalog["203"].addImage("photos/palm box.JPG",350,339);
arrCatalog["203"].addImage("photos/lilac side.JPG",350,222);
arrCatalog["203"].addImage("photos/lilac open.JPG",289,350);
arrCatalog["203"].setType(BOX);

arrCatalog["204"]=new Product("204","Valentines Roses",1.50);
arrCatalog["204"].setDescription("4 identical photographs of a red rose, each surrounded by a matching border. Printed message beneath. A6.");
arrCatalog["204"].setThumbnail("photos/thumbnails/photo red roses.jpg",109,150);
arrCatalog["204"].addImage("photos/photo red roses.jpg",233,325);

arrCatalog["205"]=new Product("205","Flower GetWellSoon",3.00);
arrCatalog["205"].setDescription("A photograph of a pink flower, mounted on dark green suede paper. Metallic green Get Well Soon message beneath. A5.");
arrCatalog["205"].setThumbnail("photos/thumbnails/pink flower.jpg",106,150);
arrCatalog["205"].addImage("photos/pink flower.jpg",283,400);

arrCatalog["206"]=new Product("206","Birthday Rose",1.50);
arrCatalog["206"].setDescription("Photograph of a large rose, surrounded by a matching coloured border. Printed message beneath reads 'Happy Birthday'. A6.");
arrCatalog["206"].setThumbnail("photos/thumbnails/pink rose.jpg",109,150);
arrCatalog["206"].addImage("photos/pink rose.jpg",237,325);

arrCatalog["207"]=new Product("207","BB4 - Plane",24.99);
arrCatalog["207"].setDescription("Wooden keepsake box, painted pale blue. Decorated with a print of a spitfire, mounted on blue and white check paper. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["207"].setThumbnail("photos/thumbnails/plane.jpg",150,119);
arrCatalog["207"].addImage("photos/plane.JPG",350,278);
arrCatalog["207"].addImage("photos/plane print.JPG",350,272);
arrCatalog["207"].addImage("photos/blue box 1.JPG",350,229);
arrCatalog["207"].addImage("photos/blue open.JPG",287,350);
arrCatalog["207"].setType(BOX);

arrCatalog["208"]=new Product("208","LB5 - Lilac Medallion",24.99);
arrCatalog["208"].setDescription("Wooden keepsake box, painted pale lilac. Decorated with a glitter design with tulips, consisting of 5 decreasing layers in varying shades of purple. Triple mounted on matching shades of card. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["208"].setThumbnail("photos/thumbnails/purple box.jpg",150,121);
arrCatalog["208"].addImage("photos/purple box.JPG",350,282);
arrCatalog["208"].addImage("photos/purple stamp.JPG",350,349);
arrCatalog["208"].addImage("photos/lilac side.JPG",350,222);
arrCatalog["208"].addImage("photos/lilac open.JPG",289,350);
arrCatalog["208"].setType(BOX);

arrCatalog["209"]=new Product("209","Waves",1.50);
arrCatalog["209"].setDescription("A photograph of waves crashing to the shore, placed on light blue card. Silver Happy Birthday greeting beneath. 4x4\".");
arrCatalog["209"].setThumbnail("photos/thumbnails/waves.jpg",148,150);
arrCatalog["209"].addImage("photos/waves.jpg",247,250);

arrCatalog["210"]=new Product("210","BB5 - Wedding",24.99);
arrCatalog["210"].setDescription("Wooden keepsake box, painted pale blue. Decorated with a print of a spitfire, mounted on blue and white check paper. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["210"].setThumbnail("photos/thumbnails/wedding box.jpg",150,119);
arrCatalog["210"].addImage("photos/wedding box.JPG",350,277);
arrCatalog["210"].addImage("photos/wedding.JPG",257,350);
arrCatalog["210"].addImage("photos/blue box 1.JPG",350,229);
arrCatalog["210"].addImage("photos/blue open.JPG",287,350);
arrCatalog["210"].setType(BOX);

arrCatalog["211"]=new Product("211","GB3 - Butterfly",24.99);
arrCatalog["211"].setDescription("Wooden keepsake box, painted pale green. Decorated with a glitter butterfly design in shades of green. Triple mounted on co-ordinating colours. \nPrecision machined from MDF, using CNC. Engraved design on the lid. Box feet covered with green baize. \nLid is secured with special hinges of brass, steel and nylon. Size 6\" x 4\" x 3.5\". Personally designed, made and decorated by us - unique design. Could become an heirloom.");
arrCatalog["211"].setThumbnail("photos/thumbnails/GBtop.jpg",150,119);
arrCatalog["211"].addImage("photos/GBtop.JPG",350,277);
arrCatalog["211"].addImage("photos/gb butterfly.JPG",350,323);
arrCatalog["211"].addImage("photos/gb side open.JPG",262,350);
arrCatalog["211"].addImage("photos/gb topside.JPG",350,262);
arrCatalog["211"].addImage("photos/gbside.JPG",350,262);
arrCatalog["211"].setType(BOX);

arrCatalog["212"]=new Product("212","WtP and Piglet",1.00);
arrCatalog["212"].setDescription("Oval shaped Disney print of Winnie the Pooh and Piglet, mounted on blue and white checked card. Blue ribbon to decorate. Happy Birthday greeting beneath. 3x3\".");
arrCatalog["212"].setThumbnail("photos/thumbnails/winnie pooh.jpg",122,150);
arrCatalog["212"].addImage("photos/winnie pooh.jpg",204,250);

arrCatalog["213"]=new Product("213","Teddy and Duck",1.00);
arrCatalog["213"].setDescription("Popcorn Teddybear and small yellow duck mounted on foam blocks to give a raised 3D surface. 4x3\".");
arrCatalog["213"].setThumbnail("photos/thumbnails/popcorn duck.jpg",150,122);
arrCatalog["213"].addImage("photos/popcorn duck.jpg",250,204);

arrCatalog["214"]=new Product("214","Squirrel",1.25);
arrCatalog["214"].setDescription("Photograph of a squirrel, edged with a black border. Quote underneath photo reads: \nJust wait until I get hold of that hairdresser\n. A6\".");
arrCatalog["214"].setThumbnail("photos/thumbnails/squirrel hair.jpg",109,150);
arrCatalog["214"].addImage("photos/DecCards 006.jpg",236,325);

arrCatalog["215"]=new Product("215","Love",1.25);
arrCatalog["215"].setDescription("Raised bubble sticker of a flower bouquet. Love wording mounted below. 6x3\".");
arrCatalog["215"].setThumbnail("photos/thumbnails/love sticker.jpg",54,150);
arrCatalog["215"].addImage("photos/DecCards 007.jpg",135,375);

arrCatalog["216"]=new Product("216","Gold tree",1.25);
arrCatalog["216"].setDescription("Gold glitter Christmas tree with small gem to finish. Red glitter pot beneath the tree, and hand written Christmas greeting below. 6x3\".");
arrCatalog["216"].setThumbnail("photos/thumbnails/glitter xmas tree.jpg",58,150);
arrCatalog["216"].addImage("photos/DecCards 009.jpg",144,375);

arrCatalog["217"]=new Product("217","Foxgloves",1.25);
arrCatalog["217"].setDescription("Photograph of pink foxgloves mounted with a green border. A6\".");
arrCatalog["217"].setThumbnail("photos/thumbnails/foxgloves.jpg",106,150);
arrCatalog["217"].addImage("photos/DecCards 010.jpg",230,325);

arrCatalog["218"]=new Product("218","Just Married",1.25);
arrCatalog["218"].setDescription("Raised bubble sticker of a wedding cake, topped with a heart. Just Married wording mounted below. 6x3\".");
arrCatalog["218"].setThumbnail("photos/thumbnails/wedding cake sticker.jpg",56,150);
arrCatalog["218"].addImage("photos/DecCards 011.jpg",135,375);

arrCatalog["219"]=new Product("219","Tulips",1.25);
arrCatalog["219"].setDescription("Tulip silhouette with pastel rainbow paper behind. Design edged with silver glitter. 6x3\".");
arrCatalog["219"].setThumbnail("photos/thumbnails/tulip silhouette.jpg",57,150);
arrCatalog["219"].addImage("photos/DecCards 013.jpg",142,375);

arrCatalog["220"]=new Product("220","Poppy",1.25);
arrCatalog["220"].setDescription("Photograph of poppy mounted with a black border. A6\".");
arrCatalog["220"].setThumbnail("photos/thumbnails/poppy.jpg",107,150);
arrCatalog["220"].addImage("photos/DecCards 014.jpg",232,325);

arrCatalog["221"]=new Product("221","Car",1.25);
arrCatalog["221"].setDescription("Wooden car with wavy or straight border. Small L plate in top left corner. Hand written message beneath. Colour of border may vary. 6x3\".");
arrCatalog["221"].setThumbnail("photos/thumbnails/car.jpg",53,150);
arrCatalog["221"].addImage("photos/DecCards 019.jpg",132,375);
arrCatalog["221"].addOption("Car Colour","Blue");
arrCatalog["221"].addOption("Car Colour","Red");
arrCatalog["221"].addOption("Car Colour","Green");
arrCatalog["221"].addOption("Border","Wavy");
arrCatalog["221"].addOption("Border","Straight");

arrCatalog["222"]=new Product("222","New House",1.25);
arrCatalog["222"].setDescription("Hand drawn house, coloured with watercolours. Hand written message beneath. 6x3\".");
arrCatalog["222"].setThumbnail("photos/thumbnails/new house.jpg",56,150);
arrCatalog["222"].addImage("photos/DecCards 016.jpg",141,375);
arrCatalog["222"].addOption("Message","New Home");
arrCatalog["222"].addOption("Message","We're Moving");
arrCatalog["222"].addOption("Message","We've Moved");
arrCatalog["222"].addOption("Message","Sorry you're leaving");

arrCatalog["223"]=new Product("223","Snail",1.25);
arrCatalog["223"].setDescription("Hand drawn snail, coloured with watercolours. Hand written message beneath. 6x3\".");
arrCatalog["223"].setThumbnail("photos/thumbnails/snail.jpg",54,150);
arrCatalog["223"].addImage("photos/DecCards 017.jpg",136,375);
arrCatalog["223"].addOption("Message","New Home");
arrCatalog["223"].addOption("Message","We're Moving");
arrCatalog["223"].addOption("Message","We've Moved");
arrCatalog["223"].addOption("Message","Sorry you're leaving");

arrCatalog["224"]=new Product("224","Blue Sunset",1.25);
arrCatalog["224"].setDescription("Photograph of a sunset in shades of blue, with a dark blue border. Please select orientation and any greeting. A6\".");
arrCatalog["224"].setThumbnail("photos/thumbnails/blue sunset birthday.jpg",150,106);
arrCatalog["224"].addImage("photos/DecCards 018.jpg",325,230);
arrCatalog["224"].addImage("photos/DecCards 020.jpg",325,229);
arrCatalog["224"].addImage("photos/DecCards 022.jpg",239,325);
arrCatalog["224"].addOption("Direcion","Portrait");
arrCatalog["224"].addOption("Direction","Landscape");
arrCatalog["224"].addOption("Greeting");

arrCatalog["225"]=new Product("225","Mushroom",1.25);
arrCatalog["225"].setDescription("Hand drawn mushroom in the shape of a house, coloured with watercolours. Hand written message beneath. 6x3\".");
arrCatalog["225"].setThumbnail("photos/thumbnails/mushroom house.jpg",56,150);
arrCatalog["225"].addImage("photos/DecCards 021.jpg",139,375);
arrCatalog["225"].addOption("Message","New Home");
arrCatalog["225"].addOption("Message","We're Moving");
arrCatalog["225"].addOption("Message","We've Moved");
arrCatalog["225"].addOption("Message","Sorry you're leaving");

arrCatalog["226"]=new Product("226","Pink Sunset",1.25);
arrCatalog["226"].setDescription("Photograph of a sunset in shades of pink, purple and blue, with a dark pink/purple border. A6.");
arrCatalog["226"].setThumbnail("photos/thumbnails/pink sunset birthday.jpg",150,105);
arrCatalog["226"].addImage("photos/DecCards 023.jpg",325,227);
arrCatalog["226"].addOption("Direcion","Portrait");
arrCatalog["226"].addOption("Direction","Landscape");
arrCatalog["226"].addOption("Greeting");

arrCatalog["227"]=new Product("227","Blue Flowers",1.25);
arrCatalog["227"].setDescription("Blue floral paper with tulip design mounted below dark blue ribbon. Co-ordinating tag reading \"With Love on Mothers Day\" to finish. Tag and ribbon may vary. A6.");
arrCatalog["227"].setThumbnail("photos/thumbnails/mum blue flowers.jpg",150,107);
arrCatalog["227"].addImage("photos/mum blue flowers.jpg",325,232);

arrCatalog["228"]=new Product("228","Yellow Sunset A5",1.75);
arrCatalog["228"].setDescription("Photograph of a sunset in shades of yellow. A5 or A6.");
arrCatalog["228"].setThumbnail("photos/thumbnails/yellow sunset.jpg",150,104);
arrCatalog["228"].addImage("photos/DecCards 024.jpg",400,277);
arrCatalog["228"].addOption("Size of card","A5");
arrCatalog["228"].addOption("Size of card","A6");
arrCatalog["228"].addOption("Direction","Portrait");
arrCatalog["228"].addOption("Direction","Landscape");
arrCatalog["228"].addOption("Greeting");

arrCatalog["229"]=new Product("229","Lilies",3.00);
arrCatalog["229"].setDescription("Photograph of white lilies, double mounted on white and black card. Printed 'With Sympathy' message mounted on black card beneath. A5.");
arrCatalog["229"].setThumbnail("photos/thumbnails/lilies sympathy.jpg",105,150);
arrCatalog["229"].addImage("photos/DecCards 025.jpg",280,400);

arrCatalog["230"]=new Product("230","Venice",3.00);
arrCatalog["230"].setDescription("Photograph of a venitian mask in cream and silver, double mounted on silver and black card, behind a cream feather. A5.");
arrCatalog["230"].setThumbnail("photos/thumbnails/venice mask.jpg",108,150);
arrCatalog["230"].addImage("photos/DecCards 026.jpg",288,400);

arrCatalog["231"]=new Product("231","Baubles",1.25);
arrCatalog["231"].setDescription("Pair of Christmas baubles, decorated with gold glitter. Mounted inside a circular aperture. 4\" sqaure.");
arrCatalog["231"].setThumbnail("photos/thumbnails/glitter baubles.jpg",150,144);
arrCatalog["231"].addImage("photos/Things 018.jpg",250,240);

arrCatalog["232"]=new Product("232","Wax square Birthday",1.50);
arrCatalog["232"].setDescription("Melted wax square, edged with black. Wax is mounted inside an embossed square, edged with silver. 4 small silver stars decorate the corners. Printed Happy Birthday message to finish. 5\" square.");
arrCatalog["232"].setThumbnail("photos/thumbnails/wax square birthday.jpg",150,147);
arrCatalog["232"].addImage("photos/Things 023.jpg",350,342);

arrCatalog["233"]=new Product("233","Jasmine",3.25);
arrCatalog["233"].setDescription("Disneys Jasmine from Aladdin, with vase and flowers, in 3D effect. Mounted on 2 shades of blue paper, and edged with gold glitter. A5.");
arrCatalog["233"].setThumbnail("photos/thumbnails/disney indian.jpg",118,150);
arrCatalog["233"].addImage("photos/Things 106.jpg",296,375);

arrCatalog["234"]=new Product("234","Piano couple",3.00);
arrCatalog["234"].setDescription("Cartoon Couple playing piano, triple mounted on cream, music and brown card. A5.");
arrCatalog["234"].setThumbnail("photos/thumbnails/piano couple.jpg",120,150);
arrCatalog["234"].addImage("photos/Things 107.jpg",299,375);

arrCatalog["235"]=new Product("235","Cinderella",3.25);
arrCatalog["235"].setDescription("Disneys Cinderlla in 3D effect. Mounted on 2 shades of blue paper. A5.");
arrCatalog["235"].setThumbnail("photos/thumbnails/cinderella.jpg",126,150);
arrCatalog["235"].addImage("photos/Things 108.jpg",314,375);

arrCatalog["236"]=new Product("236","3 silver flowers",1.50);
arrCatalog["236"].setDescription("3 silver flowers mounted on pastel rainbow paper. 6x3\".");
arrCatalog["236"].setThumbnail("photos/thumbnails/3 daisies.jpg",68,150);
arrCatalog["236"].addImage("photos/Things 109.jpg",170,375);

arrCatalog["237"]=new Product("237","Cat",1.25);
arrCatalog["237"].setDescription("Photograph of a black and white cat stretching. Printed message beneath reads \"These exercises the physio gives me are interrupting my busy lifestyle. A6.");
arrCatalog["237"].setThumbnail("photos/thumbnails/cat doorbell.jpg",113,150);
arrCatalog["237"].addImage("photos/DecCards 028.jpg",244,375);

arrCatalog["238"]=new Product("238","DrivingGL",1.25);
arrCatalog["238"].setDescription("Wooden car with wavy or straight border. Small L plate in top left corner. Hand written message beneath. Colour of border may vary. 6x3\".");
arrCatalog["238"].setThumbnail("photos/thumbnails/car tape.jpg",53,150);
arrCatalog["238"].addImage("photos/DecCards 015.jpg",140,375);
arrCatalog["238"].addOption("Car Colour","Blue");
arrCatalog["238"].addOption("Car Colour","Red");
arrCatalog["238"].addOption("Car Colour","Green");
arrCatalog["238"].addOption("Border","Wavy");
arrCatalog["238"].addOption("Border","Straight");

arrCatalog["239"]=new Product("239","Belle",3.25);
arrCatalog["239"].setDescription("Disneys Belle from Beauty and the Beast, in 3D effect. Triple mounted on co-ordinating papers. A5.");
arrCatalog["239"].setThumbnail("photos/thumbnails/belle.jpg",106,150);
arrCatalog["239"].addImage("photos/belle.jpg",284,400);
arrCatalog["239"].addOption("Greeting");

arrCatalog["240"]=new Product("240","Tinkerbell",3.25);
arrCatalog["240"].setDescription("Disneys Tinkerbell from Peter Pan, in 3D effect. Triple mounted on co-ordinating papers and decorated with irridescent stars. A5.");
arrCatalog["240"].setThumbnail("photos/thumbnails/tinkerbell.jpg",106,150);
arrCatalog["240"].addImage("photos/tinkerbell.jpg",283,400);
arrCatalog["240"].addOption("Greeting");

arrCatalog["241"]=new Product("241","Snow White",3.25);
arrCatalog["241"].setDescription("Disneys Snow White, in 3D effect. Triple mounted on co-ordinating papers and decorated with small flowers. A5.");
arrCatalog["241"].setThumbnail("photos/thumbnails/snow white.jpg",111,150);
arrCatalog["241"].addImage("photos/snow white.jpg",295,400);
arrCatalog["241"].addOption("Greeting");

arrCatalog["242"]=new Product("242","Sleeping Beauty",3.25);
arrCatalog["242"].setDescription("Disneys Sleeping Beauty, in 3D effect. Double mounted on co-ordinating papers and decorated with matching pink flowers. A5.");
arrCatalog["242"].setThumbnail("photos/thumbnails/sleeping beauty.jpg",107,150);
arrCatalog["242"].addImage("photos/sleeping beauty.jpg",285,400);
arrCatalog["242"].addOption("Greeting");

arrCatalog["243"]=new Product("243","3 monkeys",1.25);
arrCatalog["243"].setDescription("Cartoon-type image of 3 monkeys, mounted on brown card\". 6x3\".");
arrCatalog["243"].setThumbnail("photos/thumbnails/3 monkeys.jpg",53,150);
arrCatalog["243"].addImage("photos/3 monkeys.jpg",133,375);

arrCatalog["244"]=new Product("244","Parcel",1.50);
arrCatalog["244"].setDescription("Red organza ribbon decorated with small red glitter hearts. Optional tag with red 'Love' wording to finish. A6.");
arrCatalog["244"].setThumbnail("photos/thumbnails/love parcel.jpg",106,150);
arrCatalog["244"].addImage("photos/love parcel.jpg",231,325);
arrCatalog["244"].addImage("photos/parcel.jpg",234,325);
arrCatalog["244"].addOption("Tag Required","Yes");
arrCatalog["244"].addOption("Tag Required","No");

arrCatalog["245"]=new Product("245","Kiss",1.25);
arrCatalog["245"].setDescription("Raised bubble effect stickers arranged to spell 'Kiss', split by a heart sticker in the centre.\". 6x3\".");
arrCatalog["245"].setThumbnail("photos/thumbnails/kiss.jpg",150,57);
arrCatalog["245"].addImage("photos/kiss.jpg",375,142);

arrCatalog["246"]=new Product("246","BrideAndGroom",1.25);
arrCatalog["246"].setDescription("Raised bubble effect stickers spelling the words 'Bride' and 'Groom', arranged either side of a central medieval design\". 6x3\".");
arrCatalog["246"].setThumbnail("photos/thumbnails/bride groom.jpg",56,150);
arrCatalog["246"].addImage("photos/bride groom.jpg",140,375);

arrCatalog["247"]=new Product("247","Honeymoon",1.25);
arrCatalog["247"].setDescription("Raised bubble effect sticker with a flower bouquet design. Matching 'Honeymoon' wording beneath\". 6x3\".");
arrCatalog["247"].setThumbnail("photos/thumbnails/honeymoon sticker.jpg",56,150);
arrCatalog["247"].addImage("photos/honeymoon sticker.jpg",140,375);

arrCatalog["248"]=new Product("248","Bubble Hearts",1.25);
arrCatalog["248"].setDescription("Raised bubble effect heart stickers. The 2 small hearts each contain the word 'Love'\". 6x3\".");
arrCatalog["248"].setThumbnail("photos/thumbnails/hearts stickers.jpg",56,150);
arrCatalog["248"].addImage("photos/hearts stickers.jpg",141,375);

arrCatalog["249"]=new Product("249","3D cat",2.25);
arrCatalog["249"].setDescription("'Fat cat' decoupage design, built up into 4 layers (giving a 3D effect). Message reads 'To my very special Mum'\". 4\" square\".");
arrCatalog["249"].setThumbnail("photos/thumbnails/3d mum cat.jpg",150,149);
arrCatalog["249"].addImage("photos/3d mum cat.jpg",250,249);

arrCatalog["250"]=new Product("250","2 hearts",1.50);
arrCatalog["250"].setDescription("2 large handmade paper hearts (colours may vary slightly), mounted on  organza ribbon decorated with small glitter hearts\". A6\".");
arrCatalog["250"].setThumbnail("photos/thumbnails/2 hearts red.jpg",150,102);
arrCatalog["250"].addImage("photos/2 hearts red.jpg",325,220);

arrCatalog["251"]=new Product("251","WA3 - Bride & Groom",22.99);
arrCatalog["251"].setDescription("Blank photograph album. Decorated with an image of a bride and groom, embossed with glitter. Mounted on top of a co-ordinating foam strip stamped with an art-deco style rose. Matching ribbons hold the album together. Metallic silver strips complete the design. 6x8\". \nComes with handmade paper box. Acid and lignin free. 40 pages of handmade mulberry paper.");
arrCatalog["251"].setThumbnail("photos/thumbnails/pic 003.jpg",150,114);
arrCatalog["251"].addImage("photos/pic 003.jpg",300,227);
arrCatalog["251"].addImage("photos/pic 006.jpg",300,171);
arrCatalog["251"].addOption("Colour","Pink");
arrCatalog["251"].addOption("Colour","Lilac");
arrCatalog["251"].addOption("Colour","Yellow");
arrCatalog["251"].addOption("Colour","Pale blue");
arrCatalog["251"].addOption("Colour","Orange");
arrCatalog["251"].addOption("Colour","Red");
arrCatalog["251"].setType(ALBUM);

arrCatalog["252"]=new Product("252","Hedgehog BSq",1.50);
arrCatalog["252"].setDescription("Baby hedgehog sticker, triple mounted on pink or blue card. It's a Girl or It's a Boy sticker beneath the design. \n5\" square.");
arrCatalog["252"].setThumbnail("photos/thumbnails/baby girl 014.JPG",150,138);
arrCatalog["252"].addImage("photos/baby girl 014.JPG",350,322);
arrCatalog["252"].addOption("Colour/Greeting","Boy");
arrCatalog["252"].addOption("Colour/Greeting","Girl");

arrCatalog["253"]=new Product("253","Baby Hand",1.50);
arrCatalog["253"].setDescription("Black and white image of a baby's hand, mounted on black card. Silver lettering beneath the image for babies name. Appropriate coloured twine is tied around the middle of the card. \n5\" square.");
arrCatalog["253"].setThumbnail("photos/thumbnails/baby girl 001.JPG",145,150);
arrCatalog["253"].addImage("photos/baby girl 001.JPG",339,350);
arrCatalog["253"].addOption("Baby Name");
arrCatalog["253"].addOption("Twine colour","Pale Pink");
arrCatalog["253"].addOption("Twine colour","Pale Blue");
arrCatalog["253"].addOption("Twine colour","Pale Green");
arrCatalog["253"].addOption("Twine colour","Pale Yellow");