 /* 4DSHIFT - This file contains the data describing the Precious Oils */

//Type declarations

function Precious_Record(nom, identificateur, liste) {
	this.name=nom;
	this.id = identificateur;
	this.list = liste;		//price list, in the same order than the size list (put 0 when a size is not available).
	if (Precious_Record.arguments.length>3)		// you can add a comment for the table presentation.
		this.comment = Precious_Record.arguments[3];
	else this.comment = '';
}

//General settings...
//  - maximum number of each item than a customer can order
MaxQuantity = 5;
//  - number of lines in the order form
Num_Lines = 8;

//Actual data

//list of the sizes available.
Size_list = new Array ("1 ml", "2 ml", "4 ml", "10 ml", "15 ml"); 

//list of the oils available, with their name, description and prices (for each size, 0 when not available).
PreciousOils_List = new Array (
 new Precious_Record("Angelica (Angelica archangelica - Hungary)", "angelica", new Array (0,22,39,70)),
 new Precious_Record("Chamomile (Chamaemelum mixtum - Morocco)", "ChamomileMo", new Array (0,14,27,50)),
 new Precious_Record("Chamomile (Chamaemelum nobile - France)", "ChamomileNo", new Array (0,29,55,110)),
 new Precious_Record("Chamomile (Marticaria Chamomilla - Germa, Blue)", "Chamomileblue", new Array (0,27,46,98)),
 new Precious_Record("Cinnamon Bark (Cinnamomum zeylanicum - Madagascar)", "Cinnamonbark", new Array (0,18,30,66)),
 new Precious_Record("Frankincense (Boswellia Carterii - Somalia)", "Frankincense", new Array (0,18,30,65)),
new Precious_Record("Helicrysum Italicum = Immortelle - France", "ItalEkikr", new Array (0,35,68,129)),
 new Precious_Record("Jasmine Sambac Absolute - India", "Jasmine", new Array (36,69,126,0)),
 new Precious_Record("Labrador Tea (Ledum groenlandicum, Canada)", "LabradorTea", new Array (19,36,66,0)),
 new Precious_Record("Myrrh (Commiphora molmol - Somalia)", "Myrrh", new Array (0,17,29,59)),
 new Precious_Record("Nard (Nardastachus jatamansi - Nepal)", "Nard", new Array (0,24,44,88)),
 new Precious_Record("Neroli (Citrus aurantium - Morocco)", "Neroli", new Array (35,62,120,0)),
 new Precious_Record("Bulgarian Rose (Rosa damascena - Bulgaria)", "BulgRose", new Array (40,77,0,0)),
 new Precious_Record("Bulgarian Rose (Rosa damascena - Persia; rare quality)", "BuRose", new Array (66,111,0,0)),
 new Precious_Record("Rose Absolute (Rosa centifolia - Morocco)", "MorrocanRose", new Array (28,49,88,0)),
new Precious_Record("Sandalwood (Santalum album - India)", "sandal", new Array (0,30,53,111)), 
 new Precious_Record("Blue Tansy, Morroco", "blueTansy", new Array (0,23,43,0)), 
 new Precious_Record("Tuberose (Polianthes tuberosa, Absolute - India)", "tubero", new Array (46,82,0,0)),
 new Precious_Record("Vanilla (Carphephorus odoratissimus - Madagascar)", "pureVanilla", new Array (19,29,49,0)),

 new Precious_Record("PRECIOUS BLENDS", "syner", new Array (0,0,0,0,0)),
     new Precious_Record("Anointing*  (Tsuga, Frankincense, Myrrh, Nard $96/30ml)", "Anointing", new Array (0,18,27,52,74)),
 
    new Precious_Record("Archangel Metatron*  (Red & White Pine, Basil, Wh. Angelica, Cinnamon, Clove  & $50/30ml)", "Metatron", new Array (0,0,19,27,38)),
 new Precious_Record("Archangel Michael*  (Petitgrain, Frankincense, Wh. Angelica, Jasmine, Neroli & $74/30ml)", "Michael", new Array (0,0,22,36,48)),
     new Precious_Record("Divine Feminine*  (Bergamot, Geranium, Tsuga, Red Pine, Ylang Ylang, B Rose, Jasmine, Nard $71/oz)", "Feminine", new Array (0,0,20,31,44)),
      new Precious_Record("Dragon*  (Cinnamon, Clove, Oregano, Thyme, & $99/30ml)", "Dragon", new Array (0,0,26,37,58)),

new Precious_Record("Eve* - to feel feminine (Lavender, Orange, Rosewood, Clary Sage, Vetiver, Geranium, Ylang, Jasmine, Sandalwood)", "EveII", new Array (0,0,24,47,66)), 
  new Precious_Record("Grounding* - (Nard - Canadian Tsuga - Black Spruce)", "Grounding", new Array (0,19,30,71,99)), 
   new Precious_Record("Harmony* - use as perfume  (Orange, Ylang Ylang, Jasmine)", "Harmony", new Array (0,22,38,68,111)),
    new Precious_Record("Mary Magdalen* - (Tsuga, White Pine, Nard, Frankincense, Neroli, Hyssop  $98/30ml)", "Magdalen", new Array (0,0,24,44,62)),
     new Precious_Record("Om*  (Tsuga, Sandalwood, Nard, Jasmine)", "OM", new Array (0,22,30,71,98)),
   new Precious_Record("Saint Germain* - (Basil, Lavendin, Rosemary, Marjoram, VA Cedar  $50/30ml)", "germain", new Array (0,0,19,27,35)), 
 new Precious_Record("Spirit of the Temple* - to use in ceremony or clear sadness (Frankincense - Myrrh - Clary Sage - Amber)", "spirit", new Array (0,19,33,76,99)), 
new Precious_Record("SUCCESS* - use as perfume (Lavendula Vera, Petitgrain combava, Neroli)", "Succes", new Array (0,22,34,77,106))
 
//\tab new Precious_Record("", "", new Array ()),
);
 
