-
Notifications
You must be signed in to change notification settings - Fork 0
/
Herbs.html
1608 lines (1512 loc) · 70.1 KB
/
Herbs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
layout: default
---
<div id="" class="ContentWrapper container-fluid">
<div id="Herbs" class="container-fluid ">
<div class="container">
<h3 class="text-center"><strong>Herbs</strong></h3>
<hr>
<div class="col-md-12 text-left">
<p>Certain simple natural ingredients of food and herbs can prevent or cure disease conditions and debility of the mother and child in the birthing process. With locally available and minimal resources, midwives try to provide the best possible care before birth, during birth and post birth for the mothers and the newborns. Here we provide details of such remedies used by the dais in our four study areas.</p>
</div>
<div class="row text-left">
<div class="col-xs-12">
<ul class="list-group" style="width:500px; margin-left:20px;">
<li class="list-group-item text-center" style="font-weight: bold">Remedy</li>
<li class="list-group-item"><a href="#Palash">Pregnancy: Paste of Palash Flowers</a></li>
<li class="list-group-item"><a href="#Prickly">Pregnancy: Sprig of Apamaarga (Prickly Chaff Flower)</a></li>
<li class="list-group-item"><a href="#Earthworm">Before and After Birth:Earthworm, Bhunag</a></li>
<li class="list-group-item"><a href="#BS">Milk of Black Sheep</a></li>
<li class="list-group-item"><a href="#Kulathi">Water of Kulathi</a></li>
<li class="list-group-item"><a href="#Burransh">After Birth: Juice of flowers of Burransh</a></li>
<li class="list-group-item"><a href="#Hingue">After birth: Powder of asafoetida/ heengu</a></li>
<li class="list-group-item"><a href="#Vasa">After birth: Ash of Wood of Vasa</a></li>
<li class="list-group-item"><a href="#Castor">After Birth: Poultice of Castor Leaves</a></li>
<li class="list-group-item"><a href="#Nirgundi">After Birth: Poultice of Nirgundi leaves</a></li>
<li class="list-group-item"><a href="#Patish">After Birth: Powder of Indian Aconite, Patish</a></li>
<li class="list-group-item"><a href="#Kadu">After Birth: Powder of Indian Gentian, Kadu Root</a></li>
<li class="list-group-item"><a href="#Jasmine">After Birth: Jasmine flowers</a></li>
<li class="list-group-item"><a href="#Garlic">For Mother and Child: Garlic, Lasuna Remedy for multiple uses </a></li>
<li class="list-group-item"><a href="#Ghee">Before & After Birth: Ghee, clarified butter</a></li>
<li class="list-group-item"><a href="#Mohua">After Birth: Mohua Liquor</a></li>
<li class="list-group-item"><a href="#Bishop">For Mother and Child: Decoction of Bishop seeds</a></li>
<li class="list-group-item"><a href="#Peepal">Baby Care: Peepal Tree Bark</a></li>
<li class="list-group-item"><a href="#Mango">Baby Care: Application of Mango Seed Paste</a></li>
<li class="list-group-item"><a href="#laliju">Before and after birth: Lajjalu</a></li>
<li class="list-group-item"><a href="#fenguiseek">After Birth: Fenugreek seeds and Leaves</a></li>
<li class="list-group-item"><a href="#Kadcha">After Birth: Water of Kadcha</a></li>
<li class="list-group-item"><a href="#jajuba">Child Care: Application of Jujuba Leaf Paste</a></li>
<li class="list-group-item"><a href="#mustard">Child Care: Root of mustard plant</a></li>
</ul>
</div>
</div>
<div class="row text-center" id="Palash">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>Pregnancy: Paste of Palash Flowers</strong></h4>
<img src="/images/herbs/Palash.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Poultice of Palash Flowers</td>
</tr>
<tr>
<th>Scientific Name (Bot/ Zoo/Chem) </th>
<td class="text-left">Butea mono-sperma</td>
</tr>
<tr>
<th>Sanskrit Name </th>
<td class="text-left">Brahma Vriksha</td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</th>
<td class="text-left">Maharashtra</td>
</tr>
<tr>
<th>Regional Name</th>
<td class="text-left">Palaaha, Palaahaan phule (Pavri), Palas</td>
</tr>
<tr>
<th>Rationale: when and why used</th>
<td class="text-left">To cool down premature labour pains.</td>
</tr>
<tr>
<th>Preparation</th>
<td class="text-left"> Take fresh palash flowers, heat and grind into smooth paste.</td>
</tr>
<tr>
<th>Usage</th>
<td class="text-left">Smear paste on belly, or make cloth poultice and tie it.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong> Palash Flowers have cooling property, arrest bleeding (rakta stambhan) and calms the burning sensation (daah prashmana) The Ayurvedic Pharmacopoeia of India Part 1 Vol.iv p90.</p>
<p>The flowers boiled and used as poultice, they disperse swelling and promote diuresis, AK Nadkarni: Indian Materia Medica, p 224.volume1 Popular Prakashan Bombay 2009 .”The leaves calm the pitta (heat element) in the body ‘’http://www.medicinalplants.in/sanskritappnuse</p>
</td>
</tr>
<tr>
<td class="text-left"><strong> Dais’ voice </strong> <p>Dais’ voice :one can take leaves of the flame tree (palaaha), grind it and tie the paste on the belly. It stops too much blood from coming out Selya Dai_MH</p></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Prickly">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center page-header" ><strong>Pregnancy: Sprig of Apamaarga (Prickly Chaff Flower)</strong></h4>
<img src="/images/herbs/Prickly1.jpeg" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Sprig of Apamarga plant</td>
</tr>
<tr>
<th>Scientific Name (Bot/ Zoo/Chem) </td>
<td class="text-left">Achyranthes aspera</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Apamaarga</td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Jharkhand, Maharashtra</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Chirchiti</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">To cool down premature labour pains.</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Pluck the sprig of the plant</td>
</tr>
<tr>
<th>Usage</td>
<td class="text-left">Tying it on the stomach, putting it in the hair</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong> Immediate action of apamarga of inducing birth pains Among the medicinal properties mentioned of Apamarga it is relevant to mention its being strong, sharp (Teeksna) and which induces movement (sara).It is tied into the hair or around the waist of the (birthing) woman to stimulate labour pains and hasten the birth. Indian Materia Medica;A.K Nadkarni vol.1,p 22</p></td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> sprig should be plucked in one breathe and then should be inserted in puaati’s ear or in her hair. By doing so strong pains starts coming and quickly baby born. As soon baby is born, it should be removed immediately otherwise puaati can become unconscious. That’s why one should have to be alert to remove twig of chirchiti’’ Burdhi Sahis(Jh)</p></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Earthworm">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>Before and After Birth:Earthworm, Bhunag</strong></h4>
<img src="/images/herbs/EW.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Earthworm, in a masking medium, e.g.in Jh in betel leaf (paan)
in HP, with wheat flour, salt & ghee, in Mh with jowar in unleavened bread </td>
</tr>
<tr>
<th>Scientific Name (Bot/ Zoo/Chem) </td>
<td class="text-left">Amynthas lumbricales </td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">bhunaag </td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">animal</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Himachal Pradesh, Jharkhand, Maharashtra</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Sidi Bidi (HP),Paatal Madhu (JH), Aalyha (pavri Mh)</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left"><strong>In Jh site: </strong> When the pains stop during labour,
it restarts the pains and hastens childbirth.<br>
<strong> In HP & Mh sites:</strong> When the breast milk is insufficient, this increases the flow of milk.
</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left"> a) Wrap an earthworm in a betel leaf (Jh), Dry or roast earthworm, crush, add powder to wheat flour, cook in water, salt, ghee (HP).Roast the earthworm, crush to powder, mix with jowar flour and water to make roti (Mh) .</td>
</tr>
<tr>
<th>Usage</td>
<td class="text-left">(in Jh) Give to the woman to eat in the paan in Jh, as gruel in HP and as roti in Mh.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong> Earthworm is nutritionally rich. ...heating and strength giving. Dravya Guna Vijnaana Vol.3, page 69. Earthworm remains the prime remedy, as other ingredients remain as vehicle to carry the nutrition of bhunaag. Betel leaves are cold, dry, sweet and cures tendency to bleed. Wheat and jowar flours are strength promoting. </p>
<p>Patil, Manojkumar (2013). A review of bhunaag (earthworm), bhunaag satwa and bhunaag satwa bhasma. International Ayurvedic Medical Journal Vol.1(4); available at http://www.iamj.in/images/upload/iamj53.pdf</p>
</td>
</tr>
<tr>
<td class="text-left"><strong> Dais’ voice </strong> <p>If baby has come in passage and if prasoota is not having pains, then we make prasoota to eat pataal madhu (earthworm). I put the pataal madhu in a paan (betal leaf) and give it to prasoota to eat. As prasoota chew the paan she starts sweating heavily and immediately prasov happens. Kunti Sahis dai (Jh).</p>
<p>To increase the mother’s milk, sidi-bidi (earthworms) is first dried, then it is roasted with ghee and mixed with the food. Besides this it is mixed in baadi also and given to eat. Before, it was given a lot, now it is not given, I have never fed this.Mansa dai (HP)</p></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="BS">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>Milk of Black Sheep</strong></h4>
<img src="/images/herbs/BS.png" width="80%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Milk of Black Sheep</td>
</tr>
<tr>
<th>Scientific Name (Zoo) </td>
<td class="text-left">Ovis aries</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Aja dugdha </td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Animal</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Himachal Pradesh, Jharkhand</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Kaali bhed ka dudh (HP), Bhedir doodh(Jh)</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">It stops excessive bleeding after birth (HP).<br>
It is applied when baby gets boils in its mouth and sheep’s milk cures it (JH).
</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Take the milk from a black sheep </tr>
<tr>
<th>Usage</td>
<td class="text-left">Milk is given to drink to woman after birth (HP).<br>Dip finger in milk; move around in baby’s mouth. (JH)</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong> It is beneficial in bleeding disorders. Milk of sheep is hot. It aggravates hiccough and dyspnoea. It also alleviates Pitta and Kapha. </p>
</td>
</tr>
<tr>
<td class="text-left"><strong> Dais’ voice </strong> <p>Sometimes a baby gets haam (sores) inside its mouth. The sores are small, red-white, like on the tongue… The baby’s tongue turns white-white and is sore so cannot drink milk.Sheep milk cures it. Chhabi Bauri dai (Jh).</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Kulathi">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>Water of Kulathi</strong></h4>
<img src="/images/herbs/Kulathi.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Milk of Black Sheep</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Macrotyloma uniflorum/Dolichos biflorus</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Khalva, Vardhipatraka </td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Jharkhand, Karnataka</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Kurthi(Jh), Hulge (Kr)</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">Given after Childbirth, to stop bleeding and also for quick drying up the body (Jh) Given to cleanse stomach after abortion or miscarriage (Kr).
</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Boiled in water till cooked properly, sieve the water </tr>
<tr>
<th>Usage</td>
<td class="text-left">Milk is given to drink to woman after birth (HP).<br>Dip finger in milk; move around in baby’s mouth. (JH)</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong> Hot and astringent, pungent in post digestion pacify vaata and kapha. It is a good arrests bleeding). Dhanvantri Nighantu page 209 by Amrit Pal Singh Chowkhamba Delhi 2008 </p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> According to us kurthi is very good as it dries the body soon [bleeding stops early] and mother gets milk in her breasts. – Karuna, Sahis Dai (Jh) .</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Burransh">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>After Birth: Juice of flowers of Burransh</strong></h4>
<img src="/images/herbs/Burransh.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Juice of flowers of Burransh</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Rhododendron arboreum SM.</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Kurvak </td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Himachal Pradesh</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Burransh</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">It stops post partum bleeding.
</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Branss(buransh) flowers are dried nicely and then grinded properly. Then it is boiled to make juice, filtered and is given to the woman to drink.</tr>
<tr>
<th>Usage</td>
<td class="text-left">After birth when woman starts having profuse bleeding then she is given this juice to drink.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong> Rhododendron arboreum Sm. Burans, Brass Flowers are used for making a refreshing drink. They have many medicinal properties. They are useful in amoebic dysentery, diarrhea, fever, rheumatism, wounds healing, headache and nose bleeding.’’ Singh Kamal Jit and Thakur Anil Kumar Medicinal Plants of the Shimla hills, Himachal Pradesh: A Survey International Journal of Herbal Medicine 2014; 2 (2): 118-127</p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> HHS, local dai, vaidya Durga Das.</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Hingue">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>. After birth:Powder of asafoetida/ heengu</strong></h4>
<img src="/images/herbs/Hingue.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Powder of heengu/ asafoetida</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Ferula narthex Boiss.</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Hingu </td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant (dry hingu is gum from the plant Ferula assafoetida L )</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Karnataka</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Ingu</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">It creates heat in the body of the woman, who has given birth, she will not catch cold. Mother and child will be healthy
</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Small amount equal to a jowar grain is to be given.</tr>
<tr>
<th>Usage</td>
<td class="text-left">Immediately after birth, dai gives asafetida to swallow and asafetida should be kept in cotton and placed in the ears.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong>we give asafetida to eat if she eats, everything becomes clean that is why we give. In mudde(ragi balls) rice, we give. After three days of delivery, after nine days little once or twice we give that is all. It is heat creating she should be able to tolerate it, isn’t it?” Husenabi dai (Kr)</p>
<p>“Asafetida and cotton should be put in the ear, she will not become cold”. – Irakka, Bhovi Dai (Kr) </p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Vasa">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>After birth: Ash of Wood of Vasa</strong></h4>
<img src="/images/herbs/Vasa.png" width="80%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Ash of Wood of Vasa</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Adhatoda vasica.</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Vasaka , simhparani </td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Himachal Pradesh</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Bashuti </td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">This relieves the mother of the griping pain in belly with loose motions
</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Fetch 2-3 pieces of bashuti wood from forest; burn it to ash and keep it.</tr>
<tr>
<th>Usage</td>
<td class="text-left">Give 1 spoon of ash to swallow with water. It is given in the morning and evening for three days.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong> Vasa is Cold, bitter, pacifies pitta and kapha. Useful in vomiting, blood diseases, fevers.Dhanvantri Nighantu page 27 by Amrit Pal Singh Chowkhamba Delhi 2008</p>
<p>An odorous volatile principle called vasicine in vaasa is expectorant, diuretic and antispasmodic. Indian Materia Medica A.K Nadkarni Vol.1 p41</p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Sources </strong> : HHS, Vaidya Durga Das (HP).</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Castor">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>After Birth:Poultice of Castor Leaves</strong></h4>
<img src="/images/herbs/Castor.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Poultice of Castor Leaves</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Ricinus communis</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Eranda</td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Jharkhand</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Aerdi paat)</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">It is given to relieve aches and pains, to dry the body. </td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Put castor leaves in cotton cloth to make a thupi (poultice) & heat it to give sek (fomentation).</tr>
<tr>
<th>Usage</td>
<td class="text-left">Give fomentation over belly/body, for 6 days after child birth.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong> It is hot and dispeller of vaata. Its external application is useful in curing edema and pain. Dravya Guna Vijnana. vol 2 page 60.</p>
<p>It cures colic pain (sula), oedema, pain in lumber region and pelvic region. It alleviates vaata Materia Medica of Ayurveda based on Madanpala’s Nighantu by Vaidya Bhagwan Dash page 31.</p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> If any woman gets tears in her prasov raasta then I give sek with aerik (Castor) leaves, then it gets cured. I apply oil on raasta and give sek with aeirik leaves (castor leaves), it reduces the swelling in raasta and also reduces the pain”. Kamla Sahis (Jh).</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Nirgundi">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>After Birth:Poultice of Nirgundi leaves</strong></h4>
<img src="/images/herbs/Nirgundi.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Poultice of Nirgundi leaves</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Vitex negundo</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Nila Sinduka nirgundi, bhutkeshi Nirgundi</td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Jharkhand</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Buwaan paat, Sindwaar </td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">It is given to relieve aches and pains, to dry the body.</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Put nirgundi leaves in cotton cloth to make a poultice (thupi) & heat it to give fomentation (sek).</tr>
<tr>
<th>Usage</td>
<td class="text-left">Give heat through the poultice over belly/body, for 6 days after child birth.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong> Nirgundi It is curative of kapha, vaata disorders. Its leaves are heated and tied on the inflamed, swollen and painful part of the body (one of its uses) Dravya Guna Vijnana vol 2, pp66-67 </p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> Earlier we used to give sek with aerik paat (castor leaf) but nowadays it is not available that much. That’s why I give sek to the mother with buwaan paat. Bhadu dai.( Jh).</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Patish">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>After Birth: Powder of Indian Aconite, Patish</strong></h4>
<img src="/images/herbs/Patish.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Powder of Patish root</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Aconitum ferox </td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Vatsnaabh, Visha</td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Himachal Pradesh</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Patish</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">It helps to relieve stomach ache and swelling in the body due to vaata.</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Take the dry root, crush to powder and keep it ready.</tr>
<tr>
<th>Usage</td>
<td class="text-left">Give ½ tsp of powder in warm water, 2 times a day (morning and evening).</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong>It balances all the three Doshas, especially, balances Vaata and Kapha Dosha (Tridoshaghna). It improves digestion strength (deepan). By adding to any unctuous (oil, ghee) substance, and giving external massage to the body, It relieves pain and oedema and strengthens nervous system Dravya Guna Vijnana Vol 2 pp 16-110</p>
<p>It can become poisonous and life threatening if used in large quantity. Indian Materia Medica Vol.1 p24</p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> There is swelling in the legs of some women; some has swelling in the hands, legs, face. If such woman comes to me, I say that it is because of baai (vaayu/ air). This is why bitter medicine like :- make powder of kadu, patish and methi, keep it and add 2-3 pinches of the powder in the sabzi or rice and eat it. Chinji dai (HP).</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Kadu">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>After Birth:Powder of Indian Gentian, Kadu Root</strong></h4>
<img src="/images/herbs/Kadu.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Powder of Kadu root </td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Gentiana Kurro / Picrorhiza Kurro</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Trayamana, kutaki Chireta</td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Himachal Pradesh</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Kadu</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">Kadu is helps to relieve stomach ache and swelling in the body.</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Take dry kadu root, crush to powder and keep it ready.</tr>
<tr>
<th>Usage</td>
<td class="text-left">Give ½ tsp of root powder with warm water in morning and evening.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong>It pacifies disorders due to kapha and pitta. Trayamana like palash should be used in diarrhoea (charak). It is purifies breast milk. Dravya Guna Vijnana vol 2 pp441-442</p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> There is swelling in the legs of some women; some has swelling in the hands, legs, face. If such woman comes to me, I say that it is because of baai (vaayu/ air). This is why bitter medicine like :- make powder of kadu, patish and meithy, keep it and add 2-3 pinches of the powder in the sabzi or rice and eat it. Chinji dai (HP).</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Jasmine">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>After Birth: Jasmine flowers</strong></h4>
<img src="/images/herbs/Jasmine.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Tying of Jasmine flowers</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Jasminum sambac Linn</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Mallika, Mudgara</td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Karnataka</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Dundu Mallige</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">If the breast is aching due to excess breast milk or if the baby has died, by putting jasmine flowers on breast milk becomes less and pain also goes away.</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Get Jasmine flowers.</tr>
<tr>
<th>Usage</td>
<td class="text-left">Jasmine should be placed on the nipple and cloth should be tied.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong>Flowers are smeared to the breast as a paste to arrest the secretion of milk in the puerperal state in cases of threatened abscess. Nadkarni K M. Indian Materia Medica. Indian Plants and Drugs with their Medicinal Properties and Uses. edition 2nd , vol 1. Asiatic Publishing House. 2007:P 704. /p>
<p>Swati Sabharwal, Swati Sudan, Vadi Raman (2013) Jasminum Sambaclinn : A Review International Journal of Pharmaceutical Research and Bio-science. Volume 2(5):108-130 IJPRBS http://www.ijprbs.com/issuedocs/2013/10/IJPRBS%20430.pdf</p>
<p>Vd. PLT Girija has narrated how she cured a dancer of breast pain and inflammation by using Jasmine flowers in her book Jeevani: Ayurveda for Women (2013) Sanjeevani Ayurveda Foundation Chennai 2013 pp121-122</p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> : If the baby is dead then they cannot bear and they tie jasmine flower. Milk goes back. Ambajji dai (Kr).</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Garlic">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>Garlic, Lasuna Remedy for multiple uses for mother and child</strong></h4>
<img src="/images/herbs/Garlic.png" width="100%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Garlic</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Allium sativum. Linn.</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Lasuna, Rasona</td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Plant</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left"> Himachal Pradesh, Jharkhand, Karnataka </td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Lasuna(HP), Sosun (Jh) Belluli (Kr)</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">It takes away pain (HP), dries up body quickly (Jh), It keeps the heat in the woman’s body, relieves pain, and increases breast milk. Protects the mother and child from evil eyes.(Kr)</td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Garlic pods</tr>
<tr>
<th>Usage</td>
<td class="text-left">1) Garlic cloves (3 to 4 ) are given t o the mother to eat with food (Jh)<br>
2) Garlic pods are added to the agasthagi (fire for post partum woman) to reduce the pain in the genital area. <br>3) Cloves of raw garlic are placed in hot rice and given to post partum woman to increase breast milk. <br>4) A garlic pod is rolled in cotton and placed in the ears of the post partum woman to prevent cold. <br>5). When young children have balagraha (repeated infections) a garland of garlic pods is tied around their neck for approximately one week.(Kr)
</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong>Garlic is curative of,vaata and kapha disorders. It is hot, pungent and heavy. CS su 27 verse176-177</p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> : If the laarthi (new mother) catches cold, we would make Jhol and add a little bit of garlic, little black pepper and then give to drink and the cold would get cured. Chamakali dai (HP)
</p><p> If there is fever and pain in the body, mustard oil is heated, garlic, saunf, dunu is added, cooked for some time and then massage the whole body with it. By doing this woman does not catch outside wind and she becomes alright.’’ Chinji dai (HP)
</p><p> To the new mother first they give chewra-bhaaja and kultthi ka paani, along with a little ghee, sosun and raw haldi to eat for a few days. This helps to relieve pain in the belly. – Burdhi, Sahis Dai (Jh)
</p>
<p>'Till three days after delivery bread and gruel are given. After three days rice, mudde, garlic should be given. Thin ragi mudde should be given’’ Ningamma dai (Kr). We give the warmth of fire to the woman in the fire we put dried neem leaves, garlic peels, carom seeds, ragi; after the bath we give it to her (fumigation) By taking the warmth woman will not catch cold.’’ Husenabi dai (Kr)</p>
<p>’We don’t give bath to the woman [soon after delivery]. We keep garlic and cotton in the ear and tie cloth to the stomach and give gruel and make her sleep’’ Dyamakka dai (Kr)</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Ghee">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>Before & After Birth Ghee, clarified butter</strong></h4>
<img src="/images/herbs/Ghee.jpg" width="80%" class="centerArticleImage">
</div>
<div class="col-sm-12 wowload fadeInLeft animated text-center" style="visibility: visible; animation-name: fadeInLeft;">
<table class="table table-hover table-bordered " style="margin-bottom: 0px;">
<tbody>
<tr>
<th>Remedy Name</th>
<td class="text-left">Ghee</td>
</tr>
<tr>
<th>Scientific Name (Bot/Zoo/Chem) </td>
<td class="text-left">Clarified butter</td>
</tr>
<tr>
<th>Sanskrit Name </td>
<td class="text-left">Ghrita</td>
</tr>
<tr>
<th>Origin of the remedy</td>
<td class="text-left">Animal</td>
</tr>
<tr>
<th>Jeeva Study Sites</td>
<td class="text-left">Himachal Pradesh, Jharkhand, Karnataka</td>
</tr>
<tr>
<th>Regional Name</td>
<td class="text-left">Ghee</td>
</tr>
<tr>
<th>Rationale: when and why used</td>
<td class="text-left">Gives strength, good for birthing woman, before birth (gives strength, lubricate all passages) and after birth increases breast milk, it heals cuts and wounds of the birthing woman. </td>
</tr>
<tr>
<th>Preparation</td>
<td class="text-left">Made from cow’s milk</tr>
<tr>
<th>Usage</td>
<td class="text-left">Given in foods, gruels, decoctions as much as she wants.</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" style="margin-top: 0px;">
<tbody>
<tr>
<td class="text-left"><p><strong>Textual Support:</strong>Ghee pacifies vaata and pitta. It is one of the essential dietary ingredients for those debilitated due to treatments .It helps improve digestion power. (Ashtanga Hridaya Su. 9/2). “Ghee promotes vital essence and vital fires. It is curative of pain in vagina, ear and head. It is the best of the unctuous substances.”(CS, su,chap 27,verse 231-232 ) page200.</p>
</td>
</tr>
<tr>
<td class="text-left"><p><strong> Dais’ voice </strong> : if pain comes one dry date, curry leaf stick, jaggery are all boiled together and in one cup ghee is added and given to drink. Husenabi dai (Kr)
</p><p> If there is fever and pain in the body, mustard oil is heated, garlic, saunf, dunu is added, cooked for some time and then massage the whole body with it. By doing this woman does not catch outside wind and she becomes alright.’’ Chinji dai (HP)
</p><p> To the new mother first they give chewra-bhaaja and kultthi ka paani, along with a little ghee, sosun and raw haldi to eat for a few days Burdhi dai (Jh).
</p>
<p>After prasoota if the woman has pain in her belly, the belly is massaged and bachchedaani (womb )is placed in its position. After that she is given to eat ghee, milk and lugda/baadi. By eating these things, bachchedaani sits in its place Mansa dai (HP) When there is heavy bleeding (after prasoota) I grind the sontth, roast it with ghee and give it. By eating this bleeding stops. Mansa dai (HP)</p>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row text-center" id="Mohua">
<div class="col-sm-12 wowload fadeInRight animated " style="visibility: visible; animation-name: fadeInRight; background-color:white;margin-bottom:0px;">
<h4 class=" text-center" ><strong>After Birth: Mohua Liquor</strong></h4>
<img src="/images/herbs/Mohua.png" width="100%" class="centerArticleImage">
</div>