//====================================================
function article(name, descript1, descript2, number, unit, category, season, priority)
{
  this.name = name;
  this.descript1 = descript1;
  this.descript2 = descript2;
  this.number = number;
  this.unit = unit;
  this.category = category;
  this.season = season;
  this.priority = priority;
  //see beneath
  this.pics = new Array();
  //the bottom of the page
  this.key = 0;
}
//====================================================


var image_paths = new Array();
var local_path1 = 0;
var local_path2 = 1;
var web_path1 = 2;
var web_path2 = 3;
image_paths[local_path1] = "../../products/pictures/";
image_paths[local_path2] = "empty";
image_paths[web_path1] = "empty";
image_paths[web_path2] = "empty";
var image_type_standard = 0;
var image_type_detail = 1;
var image_type_similar = 2;

//====================================================
function picture(name, orientation, comment, path_id, img_type)
{
  /*
  name: name of the image file (including extension !!!) e.g. "image1_a.jpg"
  orientation: 
  	0  = square image shape
  	+1 = slight portrait orientation
  	+2 = strong portrait orientation
  	-1 = slight landscape orientation
  	-2 = strong landscape orientation
  comment: short info/caption for picture's content
  path_id: index number to access the globally defined 'image_paths[]' array
  		e.g. image_paths[local_path1];
  img_type: index to classify images e.g.:
  	- Standard Picture of a product
  	- Detail View / Macro of a product
  	- Image of a very similar product
  	- ...
  link: path + name = full url to access the image
  		e.g. "../../products/pictures/" + "image1_a.jpg"
  */
  
  //this.name = name+".jpg";
  this.name = name;
  this.orientation = orientation;
  this.comment = comment;
  (path_id) ? this.path_id = path_id : this.path_id = local_path1;
  (img_type) ? this.img_type = img_type : this.img_type = image_type_standard;
  this.link = image_paths[this.path_id] + this.name;
}
//====================================================


//====================================================
//====================================================
//====================================================
var products = new Array();

products[0] = new article("Spruce Tree", "", "", "", "Piece", "Trees", "Autumn", "90");
products[1] = new article("Nordman Fir Tree", "Danish", "Quality: Mix", "1,75 - 2,20m", "Piece", "Trees", "Autumn", "90");
products[2] = new article("Nordman Fir Tree", "Danish", "Quality: Prima", "1,75 - 2,20m", "Piece", "Trees", "Autumn", "90");
products[3] = new article("Birch", "colored", "(in 8 Colours)", "(1 Carton = 8 Bunch)", "Carton", "Decoration", "Spring", "20");
products[4] = new article("Birch Branches", "colored", "(in 8 Colours)", "(1 Bunch = 5 Handb.)", "Bunch", "Decoration", "Autumn", "20");
    products[4].pics[0] = new picture("004.jpg", 0, "Birch Branches", 0, 0);
products[5] = new article("Spruce Bark", "", "(for Decoration)", "", "Box", "Decoration", "Autumn", "20");
products[6] = new article("Corkscrew Hazel", "", "(Corylus)", "", "Bag", "Decoration", "All-Year", "20");
    products[6].pics[0] = new picture("007.jpg", 1, "Corkscrew Hazel width 'sausages'", 0, 2);
    products[6].pics[1] = new picture("007a.jpg", 2, "Corkscrew Hazel width 'sausages'", 0, 2);
products[7] = new article("Corkscrew Hazel", "width 'sausages'", "(Corylus)", "", "Bag", "Decoration", "Autumn", "20");
    products[7].pics[0] = new picture("007.jpg", 2, "Corkscrew Hazel width 'sausages'", 0, 0);
    products[7].pics[1] = new picture("007a.jpg", 2, "Corkscrew Hazel width 'sausages'", 0, 0);
products[8] = new article("Corkscrew Willow", "brown", "", "(1 Bunch = 10 Handb.)", "Bunch", "Decoration", "All-Year", "20");
    products[8].pics[0] = new picture("008.jpg", 2, "Corkscrew Willow brown", 0, 0);
    products[8].pics[1] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
    products[8].pics[2] = new picture("269.jpg", 2, "Corkscrew Willow yellow", 0, 2);
products[9] = new article("Corkscrew Willow", "green", "", "(1 Bunch = 10 Handb.)", "Bunch", "Decoration", "All-Year", "20");
    products[9].pics[0] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
    products[9].pics[1] = new picture("008.jpg", 2, "Corkscrew Willow brown", 0, 2);
    products[9].pics[2] = new picture("269.jpg", 2, "Corkscrew Willow yellow", 0, 2);
products[10] = new article("Corkscrew Willow", "red", "short, young", "(1 Bunch = 10 Handb.)", "Bunch", "Decoration", "All-Year", "20");
    products[10].pics[0] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
    products[10].pics[1] = new picture("008.jpg", 2, "Corkscrew Willow brown", 0, 2);
    products[10].pics[2] = new picture("269.jpg", 2, "Corkscrew Willow yellow", 0, 2);
products[11] = new article("Corkscrew Willow", "red", "normal", "(1 Bunch = 10 Handb.)", "Bunch", "Decoration", "All-Year", "20");
    products[11].pics[0] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 0);
    products[11].pics[1] = new picture("011a.jpg", 2, "Corkscrew Willow red, normal", 0, 0);
    products[11].pics[2] = new picture("012.jpg", 2, "Corkscrew Willow red, Poles", 0, 2);
products[12] = new article("Corkscrew Willow", "red", "Poles", "(1 Bunch = 10 Stangen)", "Bunch", "Decoration", "All-Year", "20");
    products[12].pics[0] = new picture("012.jpg", 2, "Corkscrew Willow red, Poles", 0, 0);
    products[12].pics[1] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
    products[12].pics[2] = new picture("011a.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
products[13] = new article("Corkscrew Willow", "", "", "(1 Bunch = 10 Handb.)", "Bunch", "Decoration", "Autumn", "20");
    products[13].pics[0] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
    products[13].pics[1] = new picture("011a.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
products[14] = new article("Cork Bark", "thick, tubular shape", "(for Decoration)", "", "Bunch", "Decoration", "All-Year", "20");
    products[14].pics[0] = new picture("014.jpg", 2, "Tubular Cork Bark ", 0, 0);
    products[14].pics[1] = new picture("014a.jpg", 2, "Tubular Cork Bark ", 0, 0);
    products[14].pics[2] = new picture("014b.jpg", 2, "Tubular Cork Barks ", 0, 0);
    products[14].pics[3] = new picture("015.jpg", 1, "Korkrinden Stücke im Sack", 0, 2);
products[15] = new article("Cork Bark", "thick", "(for Decoration)", "", "Sack", "Decoration", "Autumn", "20");
    products[15].pics[0] = new picture("015.jpg", 1, "Pieces of Cork Bark in Sack", 0, 0);
    products[15].pics[1] = new picture("015a.jpg", 1, "Typical Piece of Cork Bark in a Sack", 0, 1);
    products[15].pics[2] = new picture("015b.jpg", 1, "Pieces of Cork Bark in Sack", 0, 0);
    products[15].pics[3] = new picture("014.jpg", 2, "Tubular Cork Bark ", 0, 2);
    products[15].pics[4] = new picture("014a.jpg", 2, "Tubular Cork Bark ", 0, 2);
products[16] = new article("Liana Tendril", "long", "", "(tied up in big Ring)", "Piece", "Decoration", "All-Year", "20");
products[17] = new article("Crowns of Mistletoe", "", "(Single Crowns)", "", "Piece", "Decoration", "Autumn", "20");
    products[17].pics[0] = new picture("017.jpg", -1, "Single Crown of Mistletoe", 0, 0);
    products[17].pics[1] = new picture("019.jpg", -1, "Mistletoe Handbunch", 0, 2);
products[18] = new article("Crowns of Mistletoe", "", "(Palette)", "(1 Palette = 80 to 90 Pieces)", "Palette", "Decoration", "Autumn", "20");
    products[18].pics[0] = new picture("017.jpg", -1, "Single Crown of Mistletoe", 0, 2);
    products[18].pics[1] = new picture("019.jpg", -1, "Mistletoe Handbunch", 0, 2);
products[19] = new article("Mistletoe", "Handbunches", "", "(1 Box = 8 Handb.)", "Box", "Decoration", "Autumn", "20");
    products[19].pics[0] = new picture("019.jpg", -1, "Mistletoe Handbunch", 0, 0);
    products[19].pics[1] = new picture("019a.jpg", -1, "Box with Mistletoe Handbunches", 0, 0);
products[20] = new article("Pine Cones", "", "", "(1 Sack = 100 Pieces)", "Sack", "Decoration", "Autumn", "20");
products[21] = new article("Vine Roots", "1 - 4 Branchings", "", "", "Piece", "Decoration", "All-Year", "20");
    products[21].pics[0] = new picture("021.jpg", 1, "Vine Roots raw, not sand-blasted", 0, 2);
products[22] = new article("Vine Roots", "raw", "(not sand-blasted)", "", "Piece", "Decoration", "All-Year", "20");
    products[22].pics[0] = new picture("021.jpg", 1, "Vine Roots raw, not sand-blasted", 0, 0);
products[23] = new article("Vine Roots", "1 - 4 Branchings", "", "", "Piece", "Decoration", "Autumn", "20");
    products[23].pics[0] = new picture("021.jpg", 1, "Vine Roots raw, not sand-blasted", 0, 2);
products[24] = new article("Vine Roots", "1 - 4 Branchings", "Raw (1/2 Price)", "", "Piece", "Decoration", "Autumn", "20");
    products[24].pics[0] = new picture("021.jpg", 1, "Vine Roots raw, not sand-blasted", 0, 2);
products[25] = new article("Willow", "yellow, grown straight", "short Stalks", "2,5kg", "Bunch", "Decoration", "All-Year", "20");
    products[25].pics[0] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 0);
    products[25].pics[1] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
products[26] = new article("Willow", "yellow, grown straight", "medium sized Stalks", "5kg", "Bunch", "Decoration", "All-Year", "20");
    products[26].pics[0] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 0);
    products[26].pics[1] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
products[27] = new article("Willow", "yellow, grown straight", "long Stalks", "10kg", "Bunch", "Decoration", "All-Year", "20");
    products[27].pics[0] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
    products[27].pics[1] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
products[28] = new article("Willow", "green, grown straight", "short Stalks", "2,5kg", "Bunch", "Decoration", "All-Year", "20");
    products[28].pics[0] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
    products[28].pics[1] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
products[29] = new article("Willow", "green, grown straight", "medium sized Stalks", "5kg", "Bunch", "Decoration", "All-Year", "20");
    products[29].pics[0] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
    products[29].pics[1] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
products[30] = new article("Willow", "green, grown straight", "long Stalks", "10kg", "Bunch", "Decoration", "All-Year", "20");
    products[30].pics[0] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
    products[30].pics[1] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
products[31] = new article("Willow", "red, grown straight", "short Stalks", "2,5kg", "Bunch", "Decoration", "All-Year", "20");
    products[31].pics[0] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
    products[31].pics[1] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
products[32] = new article("Willow", "red, grown straight", "medium sized Stalks", "5kg", "Bunch", "Decoration", "All-Year", "20");
    products[32].pics[0] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
    products[32].pics[1] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
products[33] = new article("Willow", "red, grown straight", "long Stalks", "10kg", "Bunch", "Decoration", "All-Year", "20");
    products[33].pics[0] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
    products[33].pics[1] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
products[34] = new article("Willow", "yellow, grown straight", "short Stalks", "2,5kg", "Bunch", "Decoration", "Autumn", "20");
    products[34].pics[0] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
    products[34].pics[1] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
products[35] = new article("Willow", "yellow, grown straight", "long Stalks", "10kg", "Bunch", "Decoration", "Autumn", "20");
    products[35].pics[0] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
    products[35].pics[1] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
products[36] = new article("Willow", "yellow, grown straight", "medium sized Stalks", "5kg", "Bunch", "Decoration", "Autumn", "20");
    products[36].pics[0] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
    products[36].pics[1] = new picture("025.jpg", 2, "Short Willows, yellow, grown straight", 0, 2);
products[37] = new article("Cone Sprigs", "Spruce", "", "10kg", "Bunch", "Decoration", "Autumn", "20");
products[38] = new article("Decoration Pumpkins", "", "", "(1 Box = 30 Pieces)", "Box", "Decoration", "Autumn", "20");
    products[38].pics[0] = new picture("038.jpg", -1, "Decoration Pumpkins", 0, 0);
    products[38].pics[1] = new picture("038a.jpg", -1, "Decoration Pumpkins", 0, 0);
products[39] = new article("Band Willow", "Mix", "", "(1 Bunch = 5 Handb. x 10 Stalks)", "Bunch", "Floristic Articles", "Spring", "40");
    products[39].pics[0] = new picture("040.jpg", 1, "Band Willow", 0, 2);
    products[39].pics[1] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
    products[39].pics[2] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
products[40] = new article("Band Willow", "sorted", "", "(1 Bunch = 10 Handb. x 5 Stalks)", "Bunch", "Floristic Articles", "Spring", "40");
    products[40].pics[0] = new picture("040.jpg", 1, "Band Willow", 0, 0);
    products[40].pics[1] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
    products[40].pics[2] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
products[41] = new article("Band Willow", "sorted", "", "(1 Bunch = 10 Handb. x 5 Stalks)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[41].pics[0] = new picture("040.jpg", 1, "Band Willow", 0, 0);
    products[41].pics[1] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
    products[41].pics[2] = new picture("026.jpg", 2, "Medium-sized Willows, yellow, grown straight", 0, 2);
products[42] = new article("Birch Bark", "fine", "(for Decoration)", "", "Box", "Floristic Articles", "Autumn", "40");
    products[42].pics[0] = new picture("042.jpg", -1, "Birch Bark in a Box", 0, 0);
    products[42].pics[1] = new picture("042a.jpg", 1, "Birch Bark in a Box", 0, 0);
    products[42].pics[2] = new picture("042b.jpg", 1, "Birch Bark in a Box", 0, 0);
products[43] = new article("Box Tree", "", "(Buxus)", "5kg", "Bunch", "Floristic Articles", "All-Year", "40");
    products[43].pics[0] = new picture("043.jpg", 1, "Box Tree", 0, 0);
products[44] = new article("Box Tree", "Handbunches", "(Buxus)", "(1 Bunch = 5 Handb. x 10 Stalks)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[44].pics[0] = new picture("043.jpg", 1, "Box Tree", 0, 2);
products[45] = new article("Box Tree", "red, natural", "(Buxus)", "5kg", "Bunch", "Floristic Articles", "All-Year", "40");
    products[45].pics[0] = new picture("045.jpg", 1, "Box Tree red, natural", 0, 0);
products[46] = new article("Box Tree", "", "(Buxus)", "5kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[46].pics[0] = new picture("043.jpg", 1, "Box Tree", 0, 0);
products[47] = new article("Box Tree", "red, natural", "(Buxus)", "5kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[47].pics[0] = new picture("045.jpg", 1, "Box Tree red, natural", 0, 0);
products[48] = new article("Chrypto", "Rasen", "Sugi", "1kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[48].pics[0] = new picture("049.jpg", -1, "Chryptomeria 5kg", 0, 2);
    products[48].pics[1] = new picture("259.jpg", 0, "Chryptomeria Elegance", 0, 2);
products[49] = new article("Chryptomeria", "", "", "5kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[49].pics[0] = new picture("049.jpg", -1, "Chryptomeria 5kg", 0, 0);
    products[49].pics[1] = new picture("259.jpg", 0, "Chryptomeria Elegance", 0, 2);
products[50] = new article("Chryptomeria", "Christada", "Japonika", "1kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[50].pics[0] = new picture("049.jpg", -1, "Chryptomeria 5kg", 0, 2);
    products[50].pics[1] = new picture("259.jpg", 0, "Chryptomeria Elegance", 0, 2);
products[51] = new article("Chryptomeria", "Wire", "Japonika", "1kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[51].pics[0] = new picture("049.jpg", -1, "Chryptomeria 5kg", 0, 2);
    products[51].pics[1] = new picture("259.jpg", 0, "Chryptomeria Elegance", 0, 2);
products[52] = new article("Douglas Bark", "", "(for Decoration)", "", "Box", "Floristic Articles", "Autumn", "40");
products[53] = new article("Ivy", "Handbunches", "", "(1 Bunch = 5 Handb. x 10 Stalks)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[53].pics[0] = new picture("053.jpg", -1, "Ivy Handbunches", 0, 0);
    products[53].pics[1] = new picture("054.jpg", -1, "Ivy Handbunches with Berrys", 0, 2);
    products[53].pics[2] = new picture("054a.jpg", -1, "Ivy Handbunches with Berrys", 0, 2);
products[54] = new article("Ivy", "with Berrys", "", "5kg", "Bunch", "Floristic Articles", "All-Year", "40");
    products[54].pics[0] = new picture("054.jpg", -1, "Ivy Handbunches with Berrys", 0, 0);
    products[54].pics[1] = new picture("054a.jpg", -1, "Ivy Handbunches with Berrys", 0, 0);
    products[54].pics[2] = new picture("054b.jpg", 1, "Ivy Handbunches with Berrys", 0, 0);
    products[54].pics[3] = new picture("053.jpg", -1, "Ivy Handbunches", 0, 2);
products[55] = new article("Ivy", "", "", "5kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[55].pics[0] = new picture("053.jpg", -1, "Ivy Handbunches", 0, 2);
    products[55].pics[1] = new picture("054.jpg", -1, "Ivy Handbunches with Berrys", 0, 2);
    products[55].pics[2] = new picture("054a.jpg", -1, "Ivy Handbunches with Berrys", 0, 2);
products[56] = new article("Oak Foliage", "", "(Stone Oak)", "5kg", "Bunch", "Floristic Articles", "All-Year", "40");
products[57] = new article("Oak Foliage", "young Stalks", "(Stone Oak)", "5 x 1 kg Handb. young Stalks", "Bunch", "Floristic Articles", "All-Year", "40");
products[58] = new article("Oak Foliage", "", "(Red Oak)", "5kg", "Bunch", "Floristic Articles", "Autumn", "40");
products[59] = new article("Strawberry Tree", "Leaves", "long", "5kg", "Bunch", "Floristic Articles", "All-Year", "40");
products[60] = new article("Strawberry Tree", "Leaves", "short", "(1 Bunch = 5 Handb.)", "Bunch", "Floristic Articles", "All-Year", "40");
products[61] = new article("Strawberry Tree", "", "", "3 - 4kg", "Bunch", "Floristic Articles", "Autumn", "40");
products[62] = new article("Alder Twigs", "", "(with Fruits)", "1 Bunch = 10kg", "Bunch", "Floristic Articles", "Spring", "40");
products[63] = new article("Eucalyptus", "", "", "(1 Handb. = 10 - 15 Stalks)", "Bunch", "Floristic Articles", "Autumn", "40");
products[64] = new article("Euphorbia", "", "(in Sack)", "(1 Sack = 7 Bunch a 1kg)", "Sack", "Floristic Articles", "All-Year", "40");
    products[64].pics[0] = new picture("064.jpg", 1, "Euphorbia", 0, 0);
    products[64].pics[1] = new picture("064a.jpg", 1, "Euphorbia dried", 0, 0);
products[65] = new article("Euphorbia", "", "(in Carton)", "(1 Carton = 5 Bunch a 1kg)", "Carton", "Floristic Articles", "All-Year", "40");
    products[65].pics[0] = new picture("064.jpg", 1, "Euphorbia", 0, 0);
    products[65].pics[1] = new picture("064a.jpg", 1, "Euphorbia dried", 0, 0);
products[66] = new article("Euphorbia", "", "", "(1 Sack = 8 x 1kg )", "Sack", "Floristic Articles", "Autumn", "40");
    products[66].pics[0] = new picture("064.jpg", 1, "Euphorbia", 0, 0);
    products[66].pics[1] = new picture("064a.jpg", 1, "Euphorbia dried", 0, 0);
products[67] = new article("Forsythia", "", "", "(1 Bunch = 10 Handb.)", "Bunch", "Floristic Articles", "Spring", "40");
    products[67].pics[0] = new picture("067.jpg", 2, "Forsythia Handbunches", 0, 0);
products[68] = new article("Broom", "green, natural", "long", "10kg", "Bunch", "Floristic Articles", "All-Year", "40");
    products[68].pics[0] = new picture("070.jpg", 1, "Broom10kg", 0, 0);
products[69] = new article("Broom", "green, natural", "short", "(1 Bunch = 5 Handb.)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[69].pics[0] = new picture("070.jpg", 1, "Broom10kg", 0, 2);
products[70] = new article("Broom", "green, natural", "", "10kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[70].pics[0] = new picture("070.jpg", 1, "Broom10kg", 0, 0);
products[71] = new article("Bilberry Shrubs", "", "(small Handb.)", "(small Handb.)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[71].pics[0] = new picture("072.jpg", 1, "Bilberry Shrub Handbunches", 0, 2);
products[72] = new article("Bilberry Shrubs", "", "(big Handb.)", "(big Handb.)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[72].pics[0] = new picture("072.jpg", 1, "Bilberry Shrub Handbunches", 0, 0);
products[73] = new article("Bilberry Shrubs", "", "(2 - 3kg)", "2 - 3kg", "Bunch", "Floristic Articles", "All-Year", "40");
    products[73].pics[0] = new picture("073.jpg", 0, "Bilberry Shrub 2 - 3 kg", 0, 0);
products[74] = new article("Bilberry Shrubs", "", "(4 - 5kg)", "4 - 5kg", "Bunch", "Floristic Articles", "All-Year", "40");
    products[74].pics[0] = new picture("072.jpg", 1, "Bilberry Shrub Handbunches", 0, 2);
products[75] = new article("Bilberry Shrubs", "", "(small Handb.)", "(1 Bunch = 5 small Handb.)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[75].pics[0] = new picture("072.jpg", 1, "Bilberry Shrub Handbunches", 0, 2);
products[76] = new article("Bilberry Shrubs", "", "(big Handb.)", "(1 Bunch = 5 big Handb.)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[76].pics[0] = new picture("072.jpg", 1, "Bilberry Shrub Handbunches", 0, 0);
products[77] = new article("Bilberry Shrubs", "", "(2,5kg)", "2,5kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[77].pics[0] = new picture("073.jpg", 0, "Bilberry Shrub 2 - 3 kg", 0, 0);
products[78] = new article("Bilberry Shrubs", "", "(5kg)", "5kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[78].pics[0] = new picture("072.jpg", 1, "Bilberry Shrub Handbunches", 0, 2);
products[79] = new article("Ilex", "Handbunches", "", "(1 Bunch = 5 Handb.)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[79].pics[0] = new picture("081.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
    products[79].pics[1] = new picture("080.jpg", -1, "Ilex Twigs with yellow leaf-edge", 0, 2);
products[80] = new article("Ilex", "with yellow leaf-edge", "(cut short)", "3 kg", "Sack", "Floristic Articles", "Autumn", "40");
    products[80].pics[0] = new picture("080.jpg", -1, "Ilex Twigs with yellow leaf-edge", 0, 2);
    products[80].pics[1] = new picture("081.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
products[81] = new article("Ilex", "with red Berrys", "(cut short)", "3 kg", "Sack", "Floristic Articles", "Autumn", "40");
    products[81].pics[0] = new picture("081.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
    products[81].pics[1] = new picture("081a.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
    products[81].pics[2] = new picture("080.jpg", -1, "Ilex Twigs with yellow leaf-edge", 0, 2);
products[82] = new article("Ilex", "with red Berrys", "", "10 - 15 Stalks", "Bunch", "Floristic Articles", "Autumn", "40");
    products[82].pics[0] = new picture("081.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
    products[82].pics[1] = new picture("081a.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
    products[82].pics[2] = new picture("080.jpg", -1, "Ilex Twigs with yellow leaf-edge", 0, 2);
products[83] = new article("Ilex", "with red Berrys", "long", "5kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[83].pics[0] = new picture("081.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
    products[83].pics[1] = new picture("081a.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
    products[83].pics[2] = new picture("080.jpg", -1, "Ilex Twigs with yellow leaf-edge", 0, 2);
products[84] = new article("Ilex", "with red Berrys", "long", "3kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[84].pics[0] = new picture("081.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
    products[84].pics[1] = new picture("081a.jpg", 1, "Ilex Twig with red Berrys", 0, 2);
    products[84].pics[2] = new picture("080.jpg", -1, "Ilex Twigs with yellow leaf-edge", 0, 2);
products[85] = new article("Cherry Bay", "", "", "", "Bunch", "Floristic Articles", "All-Year", "40");
products[86] = new article("Cherry Bay", "", "", "5kg", "Bunch", "Floristic Articles", "Autumn", "40");
products[87] = new article("Lavender", "dried", "", "", "Bunch", "Floristic Articles", "All-Year", "40");
    products[87].pics[0] = new picture("087.jpg", 1, "Lavender Handbunch", 0, 0);
products[88] = new article("Lavender", "Handbunches", "", "", "Bunch", "Floristic Articles", "Autumn", "40");
    products[88].pics[0] = new picture("087.jpg", 1, "Lavender Handbunch", 0, 0);
products[89] = new article("Mahonia", "", "", "2 - 3kg", "Bunch", "Floristic Articles", "All-Year", "40");
products[90] = new article("Mahonia", "", "", "3 - 4kg", "Bunch", "Floristic Articles", "Autumn", "40");
products[91] = new article("Shell Cypress", "", "", "1kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[91].pics[0] = new picture("092.jpg", 1, "Shell Cypress Wire", 0, 2);
    products[91].pics[1] = new picture("092a.jpg", 1, "Shell Cypress Wire", 0, 2);
products[92] = new article("Shell Cypress", "Wire", "(Japanese)", "2kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[92].pics[0] = new picture("092.jpg", 1, "Shell Cypress Wire", 0, 0);
    products[92].pics[1] = new picture("092a.jpg", 1, "Shell Cypress Wire", 0, 0);
products[93] = new article("Shell Cypress", "Wisselii", "(Japanese)", "2kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[93].pics[0] = new picture("092.jpg", 1, "Shell Cypress Wire", 0, 2);
    products[93].pics[1] = new picture("092a.jpg", 1, "Shell Cypress Wire", 0, 2);
products[94] = new article("Pistachio", "", "(5 Handb. x 10 Stalks)", "(1 Bunch = 5 Handb. x 10 Stalks)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[94].pics[0] = new picture("094.jpg", -1, "Pistachio Handbunches", 0, 0);
    products[94].pics[1] = new picture("095a.jpg", -1, "Pistachio Handbunches", 0, 0);
    products[94].pics[2] = new picture("095.jpg", -1, "Pistachio Handbunches", 0, 0);
products[95] = new article("Pistachio", "", "(3 Handb. x 1kg)", "(1 Bunch = 3 Handb. x 1kg)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[95].pics[0] = new picture("095.jpg", -1, "Pistachio Handbunches", 0, 0);
    products[95].pics[1] = new picture("095a.jpg", -1, "Pistachio Handbunches", 0, 0);
    products[95].pics[2] = new picture("094.jpg", -1, "Pistachio Handbunches", 0, 0);
products[96] = new article("Pistachio", "", "(3 Handb. x 1kg)", "(1 Bunch = 3 Handb. x 1kg)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[96].pics[0] = new picture("095.jpg", -1, "Pistachio Handbunches", 0, 0);
    products[96].pics[1] = new picture("095a.jpg", -1, "Pistachio Handbunches", 0, 0);
    products[96].pics[2] = new picture("094.jpg", -1, "Pistachio Handbunches", 0, 0);
products[97] = new article("Pistachio", "", "(5 Handb. x 10 Stalks)", "(1 Bunch = 5 Handb. x 10 Stalks)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[97].pics[0] = new picture("094.jpg", -1, "Pistachio Handbunches", 0, 0);
    products[97].pics[1] = new picture("095a.jpg", -1, "Pistachio Handbunches", 0, 0);
    products[97].pics[2] = new picture("095.jpg", -1, "Pistachio Handbunches", 0, 0);
products[98] = new article("Moor Birch", "10 Handb. x 5 Stalks", "", "(1 Bunch = 10 Handb. x 5 Stalks)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[98].pics[0] = new picture("100.jpg", 1, "Moor Birch, 50 Stalks", 0, 2);
products[99] = new article("Moor Birch", "4 Handb. x 25 Stalks", "", "(1 Bunch = 4 Handb. x 25 Stalks)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[99].pics[0] = new picture("099.jpg", 0, "Moor Birch, 100 Stalks", 0, 0);
products[100] = new article("Moor Birch", "50 Stalks", "", "(1 Bunch = 50 Stalks)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[100].pics[0] = new picture("100.jpg", 1, "Moor Birch, 50 Stalks", 0, 0);
products[101] = new article("Moor Birch", "fresh", "", "(1 Bunch = 4 x 25 Stalks)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[101].pics[0] = new picture("099.jpg", 0, "Moor Birch, 100 Stalks", 0, 2);
products[102] = new article("Vine Leaves", "", "", "(1 Carton = 10 Bunch a 1kg)", "Carton", "Floristic Articles", "All-Year", "40");
    products[102].pics[0] = new picture("102.jpg", 2, "Rebkraut", 0, 0);
products[103] = new article("Bark Ribbons", "25 Pieces x 0,5m", "(for Florists)", "(1 Bunch = 25 Pieces x 0,5m)", "Bunch", "Floristic Articles", "All-Year", "40");
products[104] = new article("Bark Ribbons", "25 Pieces x 1m", "(for Florists)", "(1 Bunch = 25 Pieces x 1m)", "Bunch", "Floristic Articles", "All-Year", "40");
products[105] = new article("Bark Ribbons", "", "(for Florists)", "(1 Bunch = 25 Pieces a 1 m)", "Bunch", "Floristic Articles", "Autumn", "40");
products[106] = new article("Rosemary", "", "(3kg)", "3kg", "Bunch", "Floristic Articles", "Spring", "40");
products[107] = new article("Rosemary", "", "5 Handb. x 10 Stalks", "(1 Bunch = 5 Handb. x 10 Stalks)", "Bunch", "Floristic Articles", "Spring", "40");
products[108] = new article("Rosemary", "", "(3 - 4kg)", "3 - 4kg", "Bunch", "Floristic Articles", "Autumn", "40");
products[109] = new article("Sage", "", "", "4kg", "Bunch", "Floristic Articles", "Spring", "40");
products[110] = new article("Horsetail", "Handbunches", "(Prele)", "", "Bunch", "Floristic Articles", "Spring", "40");
products[111] = new article("Stone Oak", "", "", "4kg", "Bunch", "Floristic Articles", "All-Year", "40");
    products[111].pics[0] = new picture("111.jpg", -1, "Stone Oak", 0, 0);
    products[111].pics[1] = new picture("111a.jpg", 1, "Stone Oak", 0, 0);
products[112] = new article("Thujopsis", "Cypress", "", "1kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[112].pics[0] = new picture("112.jpg", -1, "Thujopsis Cypress", 0, 0);
products[113] = new article("Thyme", "green", "(Cytron)", "(1 Bunch = 500g)", "Bunch", "Floristic Articles", "Spring", "40");
products[114] = new article("Thyme", "dry", "", "(1 Bunch = 5 Bunch a 500g)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[114].pics[0] = new picture("116.jpg", -1, "Dried Thyme", 0, 0);
products[115] = new article("Thyme", "green", "", "(1 Carton = 12 Bunch a 250g)", "Carton", "Floristic Articles", "Autumn", "40");
products[116] = new article("Thyme", "dry", "", "(1 Meta-Bunch = 5 Bunch a 500g)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[116].pics[0] = new picture("116.jpg", -1, "Dried Thyme", 0, 0);
products[117] = new article("Tillandsi", "", "(Spanish Moss)", "", "Carton", "Floristic Articles", "All-Year", "40");
products[118] = new article("Torado", "", "", "(1 Bunch = 5 Handb. x 5 Stalks)", "Bunch", "Floristic Articles", "Autumn", "40");
products[119] = new article("Viburnum", "", "(3 Bunch x 1kg)", "(1 Bunch = 3 Bunch x 1kg)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[119].pics[0] = new picture("120a.jpg", 0, "Viburnum Handbunches", 0, 2);
    products[119].pics[1] = new picture("120.jpg", -1, "Viburnum Handbunches", 0, 2);
products[120] = new article("Viburnum", "", "(5 Handb. x 5 Stalks)", "(1 Bunch = 5 Handb. x 5 Stalks)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[120].pics[0] = new picture("120a.jpg", 0, "Viburnum Handbunches", 0, 0);
    products[120].pics[1] = new picture("120.jpg", -1, "Viburnum Handbunches", 0, 0);
products[121] = new article("Viburnum", "", "(10 Handb.)", "(1 Bunch = 10 Handb.)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[121].pics[0] = new picture("120.jpg", -1, "Viburnum Handbunches", 0, 0);
    products[121].pics[1] = new picture("120a.jpg", 0, "Viburnum Handbunches", 0, 0);
products[122] = new article("Viburnum", "", "(5 Handb. x 5 Stalks)", "(1 Bunch = 5 Handb. x 5 Stalks)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[122].pics[0] = new picture("120.jpg", -1, "Viburnum Handbunches", 0, 0);
    products[122].pics[1] = new picture("120a.jpg", 0, "Viburnum Handbunches", 0, 0);
products[123] = new article("Oak Bark", "", "", "", "Piece", "Tanning Bark", "Autumn", "70");
products[124] = new article("Spruce Bark", "", "", "", "Bunch", "Tanning Bark", "Autumn", "70");
products[125] = new article("Aurea", "Bunchware, long", "", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[125].pics[0] = new picture("124.jpg", 1, "Aurea Bunchware", 0, 0);
    products[125].pics[1] = new picture("124a.jpg", 1, "Aurea Bunchware", 0, 0);
products[126] = new article("Aurea", "Cut Greens, short", "(in Sack)", "10kg", "Sack", "Coniferous Cut Green", "Autumn", "50");
    products[126].pics[0] = new picture("124.jpg", 1, "Aurea Bunchware", 0, 2);
    products[126].pics[1] = new picture("124a.jpg", 1, "Aurea Bunchware", 0, 2);
products[127] = new article("Boulevard", "Cut Greens", "(in Sack)", "5kg", "Sack", "Coniferous Cut Green", "Autumn", "50");
products[128] = new article("Conifer", "Handbunches", "Cut Greens Mix", "(1 Bunch = 5 Handb.)", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[128].pics[0] = new picture("128.jpg", 1, "Conifer Cut Greens Mix, Handbunches", 0, 0);
    products[128].pics[1] = new picture("141.jpg", 1, "Thuja Mix (Chamaecyparis), 5kg", 0, 2);
products[129] = new article("Conifer", "Handbunches", "Alumi", "", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[129].pics[0] = new picture("128.jpg", 1, "Conifer Cut Greens Mix, Handbunches", 0, 2);
products[130] = new article("Conifer", "Mix", "(mixed Conifers)", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[130].pics[0] = new picture("128.jpg", 1, "Conifer Cut Greens Mix, Handbunches", 0, 2);
products[131] = new article("Mayerie", "Bunchware, long", "", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[131].pics[0] = new picture("131.jpg", 1, "Mayerie Bunchware", 0, 0);
products[132] = new article("Mayerie", "Cut Greens", "(in Sack)", "10kg", "Sack", "Coniferous Cut Green", "Autumn", "50");
    products[132].pics[0] = new picture("131.jpg", 1, "Mayerie Bunchware", 0, 2);
products[133] = new article("Squarrosa", "Bunchware, long", "", "2,5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
products[134] = new article("Squarrosa", "Cut Greens", "(in Sack)", "10kg", "Sack", "Coniferous Cut Green", "Autumn", "50");
products[135] = new article("Thuja", "green", "", "5kg", "Bunch", "Coniferous Cut Green", "All-Year", "50");
    products[135].pics[0] = new picture("135.jpg", 1, "Thuja green, 5kg", 0, 0);
    products[135].pics[1] = new picture("135a.jpg", 1, "Thuja green, 5kg", 0, 0);
    products[135].pics[2] = new picture("135b.jpg", 1, "Thuja green, 5kg", 0, 0);
    products[135].pics[3] = new picture("136.jpg", 1, "Thuja blue (Chamaecyparis), 5kg", 0, 2);
    products[135].pics[4] = new picture("137.jpg", 1, "Thuja yellow (1. Quality), 5kg", 0, 2);
products[136] = new article("Thuja", "blue", "(Chamaecyparis)", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[136].pics[0] = new picture("136.jpg", 1, "Thuja blue (Chamaecyparis), 5kg", 0, 0);
    products[136].pics[1] = new picture("136a.jpg", 1, "Thuja blue (Chamaecyparis), 5kg", 0, 0);
    products[136].pics[2] = new picture("135.jpg", 1, "Thuja green, 5kg", 0, 2);
    products[136].pics[3] = new picture("137.jpg", 1, "Thuja yellow (1. Quality), 5kg", 0, 2);
products[137] = new article("Thuja", "yellow", "(1. Quality)", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[137].pics[0] = new picture("137.jpg", 1, "Thuja yellow (1. Quality), 5kg", 0, 0);
    products[137].pics[1] = new picture("137a.jpg", 0, "Thuja yellow (1. Quality), 5kg", 0, 0);
    products[137].pics[2] = new picture("135.jpg", 1, "Thuja green, 5kg", 0, 2);
    products[137].pics[3] = new picture("136.jpg", 1, "Thuja blue (Chamaecyparis), 5kg", 0, 2);
products[138] = new article("Thuja", "yellow", "(2. Quality)", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[138].pics[0] = new picture("138.jpg", 1, "Thuja yellow (2. Quality), 5kg", 0, 0);
    products[138].pics[1] = new picture("138a.jpg", 1, "Thuja yellow (2. Quality), 5kg", 0, 0);
    products[138].pics[2] = new picture("137.jpg", 1, "Thuja yellow (1. Quality), 5kg", 0, 2);
    products[138].pics[3] = new picture("137a.jpg", 0, "Thuja yellow (1. Quality), 5kg", 0, 2);
products[139] = new article("Thuja", "green", "", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[139].pics[0] = new picture("135.jpg", 1, "Thuja green, 5kg", 0, 0);
    products[139].pics[1] = new picture("135a.jpg", 1, "Thuja green, 5kg", 0, 0);
    products[139].pics[2] = new picture("135b.jpg", 1, "Thuja green, 5kg", 0, 0);
    products[139].pics[3] = new picture("136.jpg", 1, "Thuja blue (Chamaecyparis), 5kg", 0, 2);
    products[139].pics[4] = new picture("137.jpg", 1, "Thuja yellow (1. Quality), 5kg", 0, 2);
products[140] = new article("Thuja", "green", "short", "10kg", "Sack", "Coniferous Cut Green", "Autumn", "50");
    products[140].pics[0] = new picture("135.jpg", 1, "Thuja green, Bunchware", 0, 2);
    products[140].pics[1] = new picture("135a.jpg", 1, "Thuja green, Bunchware", 0, 2);
    products[140].pics[2] = new picture("135b.jpg", 1, "Thuja green, Bunchware", 0, 2);
products[141] = new article("Thuja", "Mix", "(Chamaecyparis)", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[141].pics[0] = new picture("141.jpg", 1, "Thuja Mix (Chamaecyparis), 5kg", 0, 0);
    products[141].pics[1] = new picture("141a.jpg", 1, "Thuja Mix (Chamaecyparis), 5kg", 0, 0);
    products[141].pics[2] = new picture("128.jpg", 1, "Conifer Cut Greens Mix, Handbunches", 0, 2);
products[142] = new article("Cypress", "green", "(with big Spheres)", "5kg", "Bunch", "Coniferous Cut Green", "All-Year", "50");
    products[142].pics[0] = new picture("142.jpg", 1, "Cypress geen, with big Spheres", 0, 0);
    products[142].pics[1] = new picture("142a.jpg", 1, "Cypress geen, with big Spheres", 0, 0);
products[143] = new article("Cypress", "Libanis", "(Bonsai)", "", "Bunch", "Coniferous Cut Green", "All-Year", "50");
products[144] = new article("Cypress", "blue", "Arizonika", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[144].pics[0] = new picture("144.jpg", 1, "Cypress blue, Arizonika", 0, 0);
    products[144].pics[1] = new picture("144a.jpg", 1, "Cypress blue, Arizonika", 0, 0);
    products[144].pics[2] = new picture("144b.jpg", 1, "Cypress blue, Arizonika", 0, 0);
    products[144].pics[3] = new picture("142.jpg", 1, "Cypress geen, with big Spheres", 0, 2);
    products[144].pics[4] = new picture("092.jpg", 1, "Shell Cypress Wire", 0, 2);
products[145] = new article("Cypress", "green", "(fine Branchings)", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[145].pics[0] = new picture("142.jpg", 1, "Cypress geen, with big Spheres", 0, 2);
    products[145].pics[1] = new picture("144.jpg", 1, "Cypress blue, Arizonika", 0, 2);
    products[145].pics[2] = new picture("092.jpg", 1, "Shell Cypress Wire", 0, 2);
products[146] = new article("Cypress", "green", "(with big Spheres)", "5kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
    products[146].pics[0] = new picture("142.jpg", 1, "Cypress geen, with big Spheres", 0, 0);
    products[146].pics[1] = new picture("142a.jpg", 1, "Cypress geen, with big Spheres", 0, 0);
    products[146].pics[2] = new picture("144.jpg", 1, "Cypress blue, Arizonika", 0, 2);
products[147] = new article("Cypress", "Libanis", "(Bonsai)", "4kg", "Bunch", "Coniferous Cut Green", "Autumn", "50");
products[148] = new article("Advent Wreaths", "Buxus", "Plate Wreaths", "25cm in diameter", "Piece", "Wreaths", "Autumn", "80");
    products[148].pics[0] = new picture("262b.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 2);
products[149] = new article("Advent Wreaths", "Nobilis", "Plate Wreaths", "25cm in diameter", "Piece", "Wreaths", "Autumn", "80");
    products[149].pics[0] = new picture("149.jpg", 1, "Stack with 5 Nobilis Wreaths", 0, 0);
products[150] = new article("Advent Wreaths", "Nobilis", "round winded", "30cm in diameter", "Piece", "Wreaths", "Autumn", "80");
    products[150].pics[0] = new picture("256.jpg", 0, "Wreath with Diameter of 70cm ", 0, 2);
products[151] = new article("Advent Wreaths", "Nobilis-Conifer Mix", "Plate Wreaths", "25cm in diameter", "Piece", "Wreaths", "Autumn", "80");
    products[151].pics[0] = new picture("151.jpg", 0, "Stack with 5 Nobilis-Conifer Wreaths", 0, 0);
products[152] = new article("Door Wreaths", "Buxus", "", "(on Ring with 23cm in diameter)", "Piece", "Wreaths", "All-Year", "80");
    products[152].pics[0] = new picture("043.jpg", 1, "Box Tree Bunchware", 0, 2);
products[153] = new article("Door Wreaths", "Buxus", "(simply tied)", "", "Piece", "Wreaths", "All-Year", "80");
    products[153].pics[0] = new picture("043.jpg", 1, "Box Tree Bunchware", 0, 2);
products[154] = new article("Door Wreaths", "Ivy", "", "(on Ring with 23cm in diameter)", "Piece", "Wreaths", "All-Year", "80");
    products[154].pics[0] = new picture("053.jpg", -1, "Ivy Handbunches", 0, 2);
products[155] = new article("Door Wreaths", "Ivy", "(exclusively hand-tied)", "", "Piece", "Wreaths", "All-Year", "80");
    products[155].pics[0] = new picture("262a.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 2);
    products[155].pics[1] = new picture("262.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 2);
    products[155].pics[2] = new picture("262b.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 2);
    products[155].pics[3] = new picture("262c.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 2);
products[156] = new article("Door Wreaths", "Ivy-Buxus", "(exclusively hand-tied)", "", "Piece", "Wreaths", "All-Year", "80");
    products[156].pics[0] = new picture("262c.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 2);
    products[156].pics[1] = new picture("262a.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 2);
    products[156].pics[2] = new picture("262b.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 2);
    products[156].pics[3] = new picture("262.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 2);
products[157] = new article("Door Wreaths", "Mix: Ivy-Buxus", "", "(on Ring with 23cm in diameter)", "Piece", "Wreaths", "All-Year", "80");
products[158] = new article("Door Wreaths", "Mix: Ivy-Hay", "", "(on Ring with 23cm in diameter)", "Piece", "Wreaths", "All-Year", "80");
products[159] = new article("Tufted Moss", "Flat Box", "", "", "Box", "Moss", "Autumn", "10");
products[160] = new article("Tufted Moss", "Lemon Box", "", "", "Box", "Moss", "All-Year", "10");
products[161] = new article("Patch Moss", "Flat Box", "", "", "Box", "Moss", "All-Year", "10");
    products[161].pics[0] = new picture("161.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[161].pics[1] = new picture("161a.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[161].pics[2] = new picture("161b.jpg", -1, "Patch Moss in Lemon Box", 0, 2);
products[162] = new article("Patch Moss", "dried in Carton", "", "", "Carton", "Moss", "All-Year", "10");
    products[162].pics[0] = new picture("161.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[162].pics[1] = new picture("161a.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[162].pics[2] = new picture("161b.jpg", -1, "Patch Moss in Lemon Box", 0, 2);
products[163] = new article("Patch Moss", "medium-sized Box", "", "", "Box", "Moss", "All-Year", "10");
    products[163].pics[0] = new picture("161.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[163].pics[1] = new picture("161a.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[163].pics[2] = new picture("161b.jpg", -1, "Patch Moss in Lemon Box", 0, 2);
products[164] = new article("Patch Moss", "Polystyrene Box", "(from Denmark)", "", "Box", "Moss", "All-Year", "10");
    products[164].pics[0] = new picture("161.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[164].pics[1] = new picture("161a.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[164].pics[2] = new picture("161b.jpg", -1, "Patch Moss in Lemon Box", 0, 2);
products[165] = new article("Patch Moss", "Lemon Box", "", "", "Box", "Moss", "All-Year", "10");
    products[165].pics[0] = new picture("161.jpg", 1, "Patch Moss in Lemon Box", 0, 0);
    products[165].pics[1] = new picture("161a.jpg", 1, "Patch Moss in Lemon Box", 0, 0);
    products[165].pics[2] = new picture("161b.jpg", -1, "Patch Moss in Lemon Box", 0, 0);
products[166] = new article("Patch Moss", "Flat Box", "", "", "Box", "Moss", "Autumn", "10");
    products[166].pics[0] = new picture("161.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[166].pics[1] = new picture("161a.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[166].pics[2] = new picture("161b.jpg", -1, "Patch Moss in Lemon Box", 0, 2);
products[167] = new article("Patch Moss", "dried", "(in Carton)", "", "Carton", "Moss", "Autumn", "10");
    products[167].pics[0] = new picture("161.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[167].pics[1] = new picture("161a.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[167].pics[2] = new picture("161b.jpg", -1, "Patch Moss in Lemon Box", 0, 2);
products[168] = new article("Patch Moss", "medium-sized Box", "", "", "Box", "Moss", "Autumn", "10");
    products[168].pics[0] = new picture("161.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[168].pics[1] = new picture("161a.jpg", 1, "Patch Moss in Lemon Box", 0, 2);
    products[168].pics[2] = new picture("161b.jpg", -1, "Patch Moss in Lemon Box", 0, 2);
products[169] = new article("Patch Moss", "Lemon Box", "", "", "Box", "Moss", "Autumn", "10");
    products[169].pics[0] = new picture("161.jpg", 1, "Patch Moss in Lemon Box", 0, 0);
    products[169].pics[1] = new picture("161a.jpg", 1, "Patch Moss in Lemon Box", 0, 0);
    products[169].pics[2] = new picture("161b.jpg", -1, "Patch Moss in Lemon Box", 0, 0);
products[170] = new article("Plate Moss", "Flat Box", "", "", "Box", "Moss", "All-Year", "10");
    products[170].pics[0] = new picture("170.jpg", 1, "Plate Moss in Flat Box", 0, 0);
    products[170].pics[1] = new picture("170a.jpg", 1, "Plate Moss in Flat Box", 0, 0);
    products[170].pics[2] = new picture("170b.jpg", 1, "Plate Moss in Polystyrene Box", 0, 2);
    products[170].pics[3] = new picture("170c.jpg", 1, "Plate Moss in Polystyrene Box", 0, 2);
products[171] = new article("Plate Moss", "Lemon Box", "", "", "Box", "Moss", "All-Year", "10");
    products[171].pics[0] = new picture("170.jpg", 1, "Plate Moss in Flat Box", 0, 2);
    products[171].pics[1] = new picture("170a.jpg", 1, "Plate Moss in Flat Box", 0, 2);
    products[171].pics[2] = new picture("170b.jpg", 1, "Plate Moss in Polystyrene Box", 0, 2);
    products[171].pics[3] = new picture("170c.jpg", 1, "Plate Moss in Polystyrene Box", 0, 2);
products[172] = new article("Plate Moss", "Flat Box", "", "", "Box", "Moss", "Autumn", "10");
    products[172].pics[0] = new picture("170.jpg", 1, "Plate Moss in Flat Box", 0, 0);
    products[172].pics[1] = new picture("170a.jpg", 1, "Plate Moss in Flat Box", 0, 0);
    products[172].pics[2] = new picture("170b.jpg", 1, "Plate Moss in Polystyrene Box", 0, 2);
    products[172].pics[3] = new picture("170c.jpg", 1, "Plate Moss in Polystyrene Box", 0, 2);
products[173] = new article("Plate Moss", "Lemon Box", "", "", "Box", "Moss", "Autumn", "10");
    products[173].pics[0] = new picture("170.jpg", 1, "Plate Moss in Flat Box", 0, 2);
    products[173].pics[1] = new picture("170a.jpg", 1, "Plate Moss in Flat Box", 0, 2);
    products[173].pics[2] = new picture("170b.jpg", 1, "Plate Moss in Polystyrene Box", 0, 2);
    products[173].pics[3] = new picture("170c.jpg", 1, "Plate Moss in Polystyrene Box", 0, 2);
products[174] = new article("Sphagnum Moss", "Lemon Box", "(Water Moss)", "", "Box", "Moss", "All-Year", "10");
    products[174].pics[0] = new picture("174.jpg", -1, "Sphagnum Moss", 0, 0);
    products[174].pics[1] = new picture("174a.jpg", -1, "Sphagnum Moss", 0, 0);
products[175] = new article("Sphagnum Moss", "Lemon Box", "(Water Moss)", "", "Box", "Moss", "Autumn", "10");
    products[175].pics[0] = new picture("174.jpg", -1, "Sphagnum Moss", 0, 0);
    products[175].pics[1] = new picture("174a.jpg", -1, "Sphagnum Moss", 0, 0);
products[176] = new article("Mountain Pine", "", "", "5kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[176].pics[0] = new picture("176.jpg", 1, "Mountain Pine 5kg", 0, 0);
    products[176].pics[1] = new picture("176a.jpg", 1, "Mountain Pine 5kg", 0, 0);
products[177] = new article("Mountain Pine", "short", "", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[177].pics[0] = new picture("176.jpg", 1, "Mountain Pine 5kg", 0, 0);
    products[177].pics[1] = new picture("176a.jpg", 1, "Mountain Pine 5kg", 0, 0);
products[178] = new article("Mountain Pine", "long", "", "9kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[178].pics[0] = new picture("176.jpg", 1, "Mountain Pine 5kg", 0, 2);
    products[178].pics[1] = new picture("176a.jpg", 1, "Mountain Pine 5kg", 0, 2);
products[179] = new article("Blue Fir", "Kosterie", "", "5kg", "Carton", "Needle Cut Green", "Autumn", "60");
products[180] = new article("Blue Fir", "Kosterie", "", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
products[181] = new article("Douglas Fir", "", "", "10kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[181].pics[0] = new picture("181.jpg", 1, "Douglas Fir", 0, 0);
products[182] = new article("Douglas Fir", "", "", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[182].pics[0] = new picture("181.jpg", 1, "Douglas Fir", 0, 0);
products[183] = new article("Spruce", "Cut Green", "", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
products[184] = new article("Grandis", "", "", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
products[185] = new article("Mammoth", "Cut Greens, short", "", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[185].pics[0] = new picture("185.jpg", 1, "Mammoth Cut Greens, kurz", 0, 0);
products[186] = new article("Nobilis", "2 blue", "Decorational Twigs", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[186].pics[0] = new picture("187.jpg", -1, "Nobilis 3a blue, Decorational Twigs", 0, 2);
    products[186].pics[1] = new picture("188.jpg", 0, "Nobilis 3b blue, Decorational Twigs", 0, 2);
products[187] = new article("Nobilis", "3a blue (III)", "Decorational Twigs", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[187].pics[0] = new picture("187.jpg", -1, "Nobilis 3a blue, Decorational Twigs", 0, 0);
    products[187].pics[1] = new picture("187a.jpg", 0, "Nobilis 3a blue, Decorational Twigs", 0, 0);
    products[187].pics[2] = new picture("187b.jpg", 1, "Nobilis 3a blue, Decorational Twigs", 0, 0);
products[188] = new article("Nobilis", "3b blue (III+IV)", "Decorational Twigs", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[188].pics[0] = new picture("188.jpg", 0, "Nobilis 3b blue, Decorational Twigs", 0, 0);
products[189] = new article("Nobilis", "4a blue", "Side Cut", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[189].pics[0] = new picture("189.jpg", 0, "Nobilis 4a blue, Side Cut", 0, 0);
    products[189].pics[1] = new picture("189a.jpg", 0, "Nobilis 4a blue, Side Cut", 0, 0);
    products[189].pics[2] = new picture("189b.jpg", 0, "Nobilis 4a blue, Side Cut", 0, 0);
products[190] = new article("Nobilis", "4b blue-green", "Side Cut", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[190].pics[0] = new picture("190.jpg", 0, "Nobilis 4b blue-green, Side Cut", 0, 0);
products[191] = new article("Nobilis", "4c green", "Side Cut", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[191].pics[0] = new picture("193.jpg", 1, "Nobilis 5b green, Young Cut", 0, 2);
products[192] = new article("Nobilis", "5a blue-green", "Young Cut", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[192].pics[0] = new picture("192.jpg", 1, "Nobilis 5a blue-green, Young Cut", 0, 0);
products[193] = new article("Nobilis", "5b green", "Young Cut", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[193].pics[0] = new picture("193.jpg", 1, "Nobilis 5b green, Young Cut", 0, 0);
products[194] = new article("Nobilis", "6a blue-green", "Mix", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[194].pics[0] = new picture("190.jpg", 0, "Nobilis 4b blue-green, Side Cut", 0, 2);
    products[194].pics[1] = new picture("192.jpg", 1, "Nobilis 5a blue-green, Young Cut", 0, 2);
products[195] = new article("Nobilis", "6b green", "Mix", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[195].pics[0] = new picture("193.jpg", 1, "Nobilis 5b green, Young Cut", 0, 2);
products[196] = new article("Nobilis", "Handbunches", "700g", "(1 Bunch = 10 Handb.)", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[196].pics[0] = new picture("196.jpg", 1, "Nobilis Handbunches", 0, 0);
    products[196].pics[1] = new picture("190.jpg", 0, "Nobilis 4b blue-green, Side Cut. 5kg", 0, 2);
    products[196].pics[2] = new picture("193.jpg", 1, "Nobilis 5b green, Young Cut, 5kg", 0, 2);
    products[196].pics[3] = new picture("187.jpg", -1, "Nobilis 3a blue, Decorational Twigs, 5kg", 0, 2);
products[197] = new article("Nobilis", "Handbunches", "500g", "(1 Bunch = 10 Handb.)", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[197].pics[0] = new picture("196.jpg", 1, "Nobilis Handbunches", 0, 0);
    products[197].pics[1] = new picture("190.jpg", 0, "Nobilis 4b blue-green, Side Cut. 5kg", 0, 2);
    products[197].pics[2] = new picture("193.jpg", 1, "Nobilis 5b green, Young Cut, 5kg", 0, 2);
    products[197].pics[3] = new picture("187.jpg", -1, "Nobilis 3a blue, Decorational Twigs, 5kg", 0, 2);
products[198] = new article("Nobilis", "Handbunches", "", "(1 Bunch = 10 Handb.)", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[198].pics[0] = new picture("196.jpg", 1, "Nobilis Handbunches", 0, 0);
    products[198].pics[1] = new picture("190.jpg", 0, "Nobilis 4b blue-green, Side Cut. 5kg", 0, 2);
    products[198].pics[2] = new picture("193.jpg", 1, "Nobilis 5b green, Young Cut, 5kg", 0, 2);
    products[198].pics[3] = new picture("187.jpg", -1, "Nobilis 3a blue, Decorational Twigs, 5kg", 0, 2);
products[199] = new article("Nordman Fir", "short", "(from Germany)", "10kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[199].pics[0] = new picture("199.jpg", 1, "Nordman 10kg", 0, 2);
products[200] = new article("Nordman Fir", "short", "(from France)", "5kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[200].pics[0] = new picture("200.jpg", -1, "Nordman 5kg", 0, 2);
products[201] = new article("Nordman Fir", "long", "(from Germany)", "10kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[201].pics[0] = new picture("199.jpg", 1, "Nordman 10kg", 0, 2);
products[202] = new article("Nordman Fir", "medium-thick", "(from France)", "10kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[202].pics[0] = new picture("199.jpg", 1, "Nordman 10kg", 0, 2);
products[203] = new article("Nordman Fir", "round", "(from France)", "10kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[203].pics[0] = new picture("199.jpg", 1, "Nordman 10kg", 0, 2);
products[204] = new article("Nordman Fir", "Decorational Tree", "", "1 - 4m", "Piece", "Needle Cut Green", "Autumn", "60");
products[205] = new article("Nordman Fir", "Handbunches", "500g", "(1 Bunch = 10 Handb.)", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[205].pics[0] = new picture("206.jpg", 1, "Nordman Handbunches", 0, 0);
products[206] = new article("Nordman Fir", "Handbunches", "700g", "(1 Bunch = 10 Handb.)", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[206].pics[0] = new picture("206.jpg", 1, "Nordman Handbunches", 0, 0);
products[207] = new article("Nordman Fir", "short", "(from France)", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[207].pics[0] = new picture("200.jpg", -1, "Nordman 5kg", 0, 2);
products[208] = new article("Nordman Fir", "short", "(German, Day's Prod.)", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[208].pics[0] = new picture("210.jpg", -1, "Nordman 5kg", 0, 0);
products[209] = new article("Nordman Fir", "short, Mix, young", "(from Denmark)", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[209].pics[0] = new picture("200.jpg", -1, "Nordman 5kg", 0, 2);
products[210] = new article("Nordman Fir", "short, Prima", "(from Denmark)", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[210].pics[0] = new picture("200.jpg", -1, "Nordman 5kg", 0, 2);
products[211] = new article("Nordman Fir", "long", "(German, Day's Prod.)", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[211].pics[0] = new picture("210.jpg", -1, "Nordman 5kg", 0, 2);
products[212] = new article("Nordman Fir", "long, Mix", "(from Denmark)", "9kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[212].pics[0] = new picture("199.jpg", 1, "Nordman 10kg", 0, 2);
products[213] = new article("Nordman Fir", "long, Prima", "(from Denmark)", "9kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[213].pics[0] = new picture("199.jpg", 1, "Nordman 10kg", 0, 2);
products[214] = new article("Nordman Fir", "medium-thick", "(from France)", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[214].pics[0] = new picture("199.jpg", 1, "Nordman 10kg", 0, 2);
products[215] = new article("Nordman Fir", "round", "(from France)", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[215].pics[0] = new picture("199.jpg", 1, "Nordman 10kg", 0, 2);
products[216] = new article("Taxus", "Column Taxus", "yellow", "5kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[216].pics[0] = new picture("216.jpg", 1, "Column Taxus yellow", 0, 0);
    products[216].pics[1] = new picture("260.jpg", 1, "Column Taxus green", 0, 2);
products[217] = new article("Taxus", "Column Taxus", "yellow", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[217].pics[0] = new picture("216.jpg", 1, "Column Taxus yellow", 0, 0);
    products[217].pics[1] = new picture("260.jpg", 1, "Column Taxus green", 0, 2);
products[218] = new article("Silver Fir", "", "", "10kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[218].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 0);
    products[218].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 0);
products[219] = new article("Silver Fir", "medium-thick, flat", "", "10kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[219].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 2);
    products[219].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 2);
products[220] = new article("Silver Fir", "round", "", "10kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[220].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 2);
    products[220].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 2);
products[221] = new article("Silver Fir", "flat", "(German, Day's Prod.)", "", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[221].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 2);
    products[221].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 2);
products[222] = new article("Silver Fir", "flat", "(Branch. Fir-Tree)", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[222].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 2);
    products[222].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 2);
products[223] = new article("Silver Fir", "medium", "(German, Day's Prod.)", "", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[223].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 2);
    products[223].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 2);
products[224] = new article("Silver Fir", "medium-thick, flat", "", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[224].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 2);
    products[224].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 2);
products[225] = new article("Silver Fir", "round", "(German, Day's Prod.)", "", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[225].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 2);
    products[225].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 2);
products[226] = new article("Silver Fir", "round", "", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[226].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 2);
    products[226].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 2);
products[227] = new article("Silver Fir", "round", "(from France)", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[227].pics[0] = new picture("218.jpg", 1, "Silver Fir 10kg", 0, 2);
    products[227].pics[1] = new picture("218a.jpg", 1, "Silver Fir 10kg", 0, 2);
products[228] = new article("Weymouth", "Handbunches", "700g", "(1 Bunch = 10 Handb.)", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[228].pics[0] = new picture("228.jpg", 1, "Weymouth Handbunches, each 700g", 0, 0);
    products[228].pics[1] = new picture("228a.jpg", 1, "Weymouth Handbunches, each 700g", 0, 0);
    products[228].pics[2] = new picture("228b.jpg", 1, "Weymouth Handbunches, each 700g", 0, 0);
    products[228].pics[3] = new picture("230.jpg", 1, "Weymouth Pine short, young", 0, 2);
products[229] = new article("Weymouth", "Handbunches, short", "300 - 400g", "(1 Bunch = 10 Handb.)", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[229].pics[0] = new picture("228.jpg", 1, "Weymouth Handbunches, each 700g", 0, 2);
    products[229].pics[1] = new picture("228a.jpg", 1, "Weymouth Handbunches, each 700g", 0, 2);
    products[229].pics[2] = new picture("228b.jpg", 1, "Weymouth Handbunches, each 700g", 0, 2);
    products[229].pics[3] = new picture("230.jpg", 1, "Weymouth Pine short, young", 0, 2);
products[230] = new article("Weymouth Pine", "short, young", "(Silk Pine)", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[230].pics[0] = new picture("230.jpg", 1, "Weymouth Pine short, young", 0, 0);
    products[230].pics[1] = new picture("230a.jpg", 1, "Weymouth Pine short, young", 0, 0);
    products[230].pics[2] = new picture("228.jpg", 1, "Weymouth Handbunches, each 700g", 0, 2);
products[231] = new article("Weymouth Pine", "long", "(Silk Pine)", "10kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[231].pics[0] = new picture("230.jpg", 1, "Weymouth Pine short, young", 0, 2);
    products[231].pics[1] = new picture("230a.jpg", 1, "Weymouth Pine short, young", 0, 2);
    products[231].pics[2] = new picture("228.jpg", 1, "Weymouth Handbunches, each 700g", 0, 2);
products[232] = new article("Apricot", "", "", "(1 Bunch = 5 Handb. x 10 Stalks)", "Bunch", "Sprouting Twigs", "Spring", "30");
products[233] = new article("Birch", "Handbunches", "soft, small", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[233].pics[0] = new picture("234.jpg", 0, "Birch Handbunches, big, soft", 0, 2);
    products[233].pics[1] = new picture("236.jpg", -1, "Birch long, soft, 10 kg", 0, 2);
    products[233].pics[2] = new picture("263.jpg", 1, "Birch Handbunches, small, grown straight", 0, 2);
products[234] = new article("Birch", "Handbunches", "soft, big", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[234].pics[0] = new picture("234.jpg", 0, "Birch Handbunches, big, soft", 0, 0);
    products[234].pics[1] = new picture("236.jpg", -1, "Birch long, soft, 10 kg", 0, 2);
    products[234].pics[2] = new picture("264.jpg", 1, "Birch Handbunches, big, grown straight", 0, 2);
products[235] = new article("Birch", "Handbunches", "pre-sprouted", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
products[236] = new article("Birch", "long", "soft, big", "10 kg", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[236].pics[0] = new picture("236.jpg", -1, "Birch long, soft, 10 kg", 0, 0);
    products[236].pics[1] = new picture("234.jpg", 0, "Birch Handbunches, big, soft", 0, 2);
    products[236].pics[2] = new picture("265.jpg", 1, "Birch long, grown straight, 10 kg", 0, 2);
products[237] = new article("Chenomelis", "short", "(Decorational Quince)", "(1 Bunch = 5 Handb. x 10 Stalks)", "Bunch", "Sprouting Twigs", "Spring", "30");
products[238] = new article("Chenomelis", "long", "(Decorational Quince)", "(1 Bunch = 5 Handb. x 5 Stalks)", "Bunch", "Sprouting Twigs", "Spring", "30");
products[239] = new article("Cornus", "yellow, grown straight", "medium", "", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[239].pics[0] = new picture("239.jpg", 1, "Cornus yellow, grown straight", 0, 0);
    products[239].pics[1] = new picture("241.jpg", 2, "Cornus red, grown straight, medium", 0, 2);
products[240] = new article("Cornus", "red, grown straight", "short", "", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[240].pics[0] = new picture("241.jpg", 2, "Cornus red, grown straight, medium", 0, 2);
    products[240].pics[1] = new picture("239.jpg", 1, "Cornus yellow, grown straight", 0, 2);
products[241] = new article("Cornus", "red, grown straight", "medium", "", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[241].pics[0] = new picture("241.jpg", 2, "Cornus red, grown straight, medium", 0, 0);
    products[241].pics[1] = new picture("239.jpg", 1, "Cornus yellow, grown straight", 0, 2);
products[242] = new article("Forsythia", "", "", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Autumn", "30");
    products[242].pics[0] = new picture("067.jpg", 2, "Forsythia Handbunches", 0, 0);
products[243] = new article("Chestnut Twigs", "", "(big buds)", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
products[244] = new article("Cherry Twigs", "not pre-sprouted", "", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[244].pics[0] = new picture("268.jpg", 2, "Sour Cherry not pre-sprouted", 0, 2);
products[245] = new article("Cherry Twigs", "pre-sprouted", "", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[245].pics[0] = new picture("267.jpg", 2, "Sour Cherry pre-sprouted", 0, 2);
products[246] = new article("Cherry Twigs", "", "", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Autumn", "30");
products[247] = new article("Peach", "", "", "(1 Bunch = 5 Handb. x 10 Stalks)", "Bunch", "Sprouting Twigs", "Spring", "30");
products[248] = new article("Sweet Cherry", "", "", "", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[248].pics[0] = new picture("266.jpg", 2, "Sour Cherry Handbunches", 0, 2);
products[249] = new article("Willow Catkin", "", "", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[249].pics[0] = new picture("251.jpg", 2, "Willow Catkin green", 0, 2);
    products[249].pics[1] = new picture("252.jpg", 2, "Willow Catkin red", 0, 2);
products[250] = new article("Willow Catkin", "green", "long", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[250].pics[0] = new picture("251.jpg", 2, "Willow Catkin green", 0, 2);
    products[250].pics[1] = new picture("252.jpg", 2, "Willow Catkin red", 0, 2);
products[251] = new article("Willow Catkin", "green", "short", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[251].pics[0] = new picture("251.jpg", 2, "Willow Catkin green", 0, 0);
    products[251].pics[1] = new picture("252.jpg", 2, "Willow Catkin red", 0, 2);
products[252] = new article("Willow Catkin", "red", "", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[252].pics[0] = new picture("252.jpg", 2, "Willow Catkin red", 0, 0);
    products[252].pics[1] = new picture("251.jpg", 2, "Willow Catkin green", 0, 2);
products[253] = new article("Willow Catkin", "defoliated", "", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Autumn", "30");
    products[253].pics[0] = new picture("254.jpg", 2, "Willow Catkin Handbunches", 0, 0);
products[254] = new article("Willow Catkin", "Handbunches", "defoliated and peeled", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Autumn", "30");
    products[254].pics[0] = new picture("254.jpg", 2, "Willow Catkin Handbunches", 0, 0);
products[255] = new article("Willow Catkin", "Handbunches", "defoliated and peeled", "", "Bunch", "Sprouting Twigs", "Autumn", "30");
    products[255].pics[0] = new picture("254.jpg", 2, "Willow Catkin Handbunches", 0, 2);
products[256] = new article("Adventskränze", "Nobilis", "round winded", "70cm", "Piece", "Wreaths", "Autumn", "80");
    products[256].pics[0] = new picture("256.jpg", 0, "Wreath with Diameter of 70cm ", 0, 0);
products[257] = new article("Bilberry Shrubs", "gold-plated", "", "(small Handb.)", "Bunch", "Floristic Articles", "All-Year", "40");
    products[257].pics[0] = new picture("257.jpg", 1, "Gold-plated Bilberry Handbunch", 0, 0);
products[258] = new article("Olives", "", "", "(1 Bunch = 5 Handb.)", "Bunch", "Floristic Articles", "Autumn", "40");
    products[258].pics[0] = new picture("258.jpg", 1, "Olive Handbunch", 0, 0);
products[259] = new article("Chryptomeria", "Elegance", "", "2kg", "Bunch", "Floristic Articles", "Autumn", "40");
    products[259].pics[0] = new picture("259.jpg", 0, "Chryptomeria Elegance", 0, 0);
products[260] = new article("Taxus", "Column Taxus", "green", "5kg", "Bunch", "Needle Cut Green", "All-Year", "60");
    products[260].pics[0] = new picture("260.jpg", 1, "Column Taxus green", 0, 0);
    products[260].pics[1] = new picture("216.jpg", 1, "Column Taxus yellow", 0, 2);
products[261] = new article("Taxus", "Column Taxus", "green", "5kg", "Bunch", "Needle Cut Green", "Autumn", "60");
    products[261].pics[0] = new picture("260.jpg", 1, "Column Taxus green", 0, 0);
    products[261].pics[1] = new picture("216.jpg", 1, "Column Taxus yellow", 0, 2);
products[262] = new article("Advent Wreaths", "exclusively hand-tied", "Plate Wreaths", "25cm", "Piece", "Wreaths", "Autumn", "80");
    products[262].pics[0] = new picture("262.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 0);
    products[262].pics[1] = new picture("262a.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 0);
    products[262].pics[2] = new picture("262b.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 0);
    products[262].pics[3] = new picture("262c.jpg", 0, "Mixed Advent Wreath, exclusively hand-tied!", 0, 0);
products[263] = new article("Birch", "Handbunches", "grown straight, small", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[263].pics[0] = new picture("263.jpg", 1, "Birch Handbunches, small, grown straight", 0, 0);
    products[263].pics[1] = new picture("265.jpg", 1, "Birch long, grown straight, 10 kg", 0, 2);
    products[263].pics[2] = new picture("234.jpg", 0, "Birch Handbunches, big, soft", 0, 2);
products[264] = new article("Birch", "Handbunches", "grown straight, big", "(1 Bunch = 10 Handb.)", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[264].pics[0] = new picture("264.jpg", 1, "Birch Handbunches, big, grown straight", 0, 0);
    products[264].pics[1] = new picture("265.jpg", 1, "Birch long, grown straight, 10 kg", 0, 2);
    products[264].pics[2] = new picture("234.jpg", 0, "Birch Handbunches, big, soft", 0, 2);
products[265] = new article("Birch", "long", "grown straight, big", "10 kg", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[265].pics[0] = new picture("265.jpg", 1, "Birch long, grown straight, 10 kg", 0, 0);
    products[265].pics[1] = new picture("234.jpg", 0, "Birch Handbunches, big, soft", 0, 2);
    products[265].pics[2] = new picture("236.jpg", -1, "Birch long, soft, 10 kg", 0, 2);
products[266] = new article("Sour Cherry", "Handbunches", "", "", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[266].pics[0] = new picture("266.jpg", 2, "Sour Cherry Handbunches", 0, 0);
    products[266].pics[1] = new picture("267.jpg", 2, "Sour Cherry pre-sprouted", 0, 2);
    products[266].pics[2] = new picture("268.jpg", 2, "Sour Cherry not pre-sprouted", 0, 2);
products[267] = new article("Sour Cherry", "pre-sprouted", "", "", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[267].pics[0] = new picture("267.jpg", 2, "Sour Cherry pre-sprouted", 0, 0);
    products[267].pics[1] = new picture("268.jpg", 2, "Sour Cherry not pre-sprouted", 0, 2);
    products[267].pics[2] = new picture("266.jpg", 2, "Sour Cherry Handbunches", 0, 2);
products[268] = new article("Sour Cherry", "not pre-sprouted", "", "", "Bunch", "Sprouting Twigs", "Spring", "30");
    products[268].pics[0] = new picture("268.jpg", 2, "Sour Cherry not pre-sprouted", 0, 0);
    products[268].pics[1] = new picture("267.jpg", 2, "Sour Cherry pre-sprouted", 0, 2);
    products[268].pics[2] = new picture("266.jpg", 2, "Sour Cherry Handbunches", 0, 2);
products[269] = new article("Corkscrew Willow", "yellow", "", "(1 Bunch = 10 Handb.)", "Bunch", "Decoration", "All-Year", "20");
    products[269].pics[0] = new picture("269.jpg", 2, "Corkscrew Willow yellow", 0, 0);
    products[269].pics[1] = new picture("008.jpg", 2, "Corkscrew Willow brown", 0, 2);
    products[269].pics[2] = new picture("011.jpg", 2, "Corkscrew Willow red, normal", 0, 2);
products[270] = new article("Birch-Moss Wreath", "looped twigs + Moss", "Door Wreaths", "25 cm", "Piece", "Wreaths", "Spring", "80");
    products[270].pics[0] = new picture("270.jpg", 0, "Stack with 5 Birch-Moss Wreaths", 0, 0);
    products[270].pics[1] = new picture("271.jpg", 1, "Stack with 5 Birch Wreaths, looped twigs", 0, 2);
    products[270].pics[2] = new picture("272.jpg", 1, "Stack with 5 Birch Wreaths, cut twigs", 0, 2);
    products[270].pics[3] = new picture("273.jpg", 1, "Stack with 5 Birch-Wood Wreaths", 0, 2);
products[271] = new article("Birch Wreath", "looped twigs ", "Door Wreaths", "25 cm", "Piece", "Wreaths", "Spring", "80");
    products[271].pics[0] = new picture("271.jpg", 1, "Stack with 5 Birch Wreaths, looped twigs", 0, 0);
    products[271].pics[1] = new picture("270.jpg", 0, "Stack with 5 Birch-Moss Wreaths", 0, 2);
    products[271].pics[2] = new picture("272.jpg", 1, "Stack with 5 Birch Wreaths, cut twigs", 0, 2);
    products[271].pics[3] = new picture("273.jpg", 1, "Stack with 5 Birch-Wood Wreaths", 0, 2);
products[272] = new article("Birch Wreath", "cut twigs", "Door Wreaths", "25 cm", "Piece", "Wreaths", "Spring", "80");
    products[272].pics[0] = new picture("272.jpg", 1, "Stack with 5 Birch Wreaths, cut twigs", 0, 0);
    products[272].pics[1] = new picture("270.jpg", 0, "Stack with 5 Birch-Moss Wreaths", 0, 2);
    products[272].pics[2] = new picture("271.jpg", 1, "Stack with 5 Birch Wreaths, looped twigs", 0, 2);
    products[272].pics[3] = new picture("273.jpg", 1, "Stack with 5 Birch-Wood Wreaths", 0, 2);
products[273] = new article("Birch-Wood Wreath", "", "Door Wreaths", "25 cm", "Piece", "Wreaths", "Spring", "80");
    products[273].pics[0] = new picture("273.jpg", 1, "Stack with 5 Birch-Wood Wreaths", 0, 0);
    products[273].pics[1] = new picture("270.jpg", 0, "Stack with 5 Birch-Moss Wreaths", 0, 2);
    products[273].pics[2] = new picture("271.jpg", 1, "Stack with 5 Birch Wreaths, looped twigs", 0, 2);
    products[273].pics[3] = new picture("272.jpg", 1, "Stack with 5 Birch Wreaths, cut twigs", 0, 2);


//====================================================
//====================================================
//====================================================


//====================================================
//now set the 'key' value of each product 
//to the index value it has in the 'products[]' array:
var i;
for (i = 0; i < products.length; i++) {
	products[i].key = i;
}
//====================================================
