-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
1010 lines (919 loc) · 43.4 KB
/
index.php
File metadata and controls
1010 lines (919 loc) · 43.4 KB
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
<?php
include('modules/navbar.php');
?>
<!DOCTYPE html>
<html lang="en" style="" class=" js no-touch js no-touch csstransforms3d csstransitions"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style class="vjs-styles-defaults">
.vdo-js {
width: 300px;
height: 150px;
}
.vjs-fluid {
padding-top: 56.25%
}
</style>
<link rel="apple-touch-icon" sizes="57x57" href="assets/images/faviconsBLP/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/images/faviconsBLP/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/images/faviconsBLP/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/images/faviconsBLP/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/images/faviconsBLP/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/images/faviconsBLP/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/images/faviconsBLP/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/images/faviconsBLP/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/faviconsBLP/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/images/faviconsBLP/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/faviconsBLP/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/images/faviconsBLP/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/faviconsBLP/favicon-16x16.png">
<link rel="manifest" href="assets/images/faviconsBLP/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta charset="utf-8">
<title>Bombay Leprosy Project</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<!-- Link Swiper's CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.4.6/css/swiper.min.css">
<!-- Demo styles -->
<title>BOMBAY LEPROSY</title>
<!------- custom-theme -------->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Medicate Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template,
Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design">
<script type="text/javfascript" async="" src="assets/blp/analytics.js.download"></script><script async="" src="assets/blp/analytics.js.download"></script><script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false);
function hideURLbar(){ window.scrollTo(0,1); } </script>
<!-- custom-theme -->
<script type="text/javascript" src="assets/blp/jquery-1.11.1.min.js.download"></script><style></style>
<!-- stylesheet -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link href="assets/blp/easy-responsive-tabs.css" rel="stylesheet" type="text/css">
<link href="assets/css/style.css" rel="stylesheet" type="text/css" media="all">
<link href="assets/blp/gallery.css" rel="stylesheet" type="text/css" media="all"> <!-- gallery css -->
<!-- //stylesheet -->
<!-- online fonts -->
<link href="assets/blp/css" rel="stylesheet">
<link href="assets/blp/css(1)" rel="stylesheet">
<!-- //online fonts -->
<!-- font-awesome-icons -->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- //font-awesome-icons -->
<script src="assets/blp/modernizr.custom.js.download"></script>
<script type="text/javascript" src="assets/blp/modernizr.custom.79639.js.download"></script>
<link rel="stylesheet" type="text/css" href="assets/blp/custom.css">
<!-- for smooth scrolling -->
<script type="text/javascript" src="assets/blp/move-top.js.download"></script>
<script type="text/javascript" src="assets/blp/easing.js.download"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
<!-- //for smooth scrolling -->
<style type="text/css">
</style>
<body style="">
<script>
(function(){
if(typeof _bsa !== 'undefined' && _bsa) {
// format, zoneKey, segment:value, options
_bsa.init('flexbar', 'CKYI627U', 'placement:w3layoutscom');
}
})();
</script>
<script>
(function(){
if(typeof _bsa !== 'undefined' && _bsa) {
// format, zoneKey, segment:value, options
_bsa.init('fancybar', 'CKYDL2JN', 'placement:demo');
}
})();
</script>
<script>
(function(){
if(typeof _bsa !== 'undefined' && _bsa) {
// format, zoneKey, segment:value, options
_bsa.init('stickybox', 'CKYI653J', 'placement:w3layoutscom');
}
})();
</script>
<script>
(function(v,d,o,ai){ai=d.createElement("script");ai.defer=true;ai.async=true;ai.src=v.location.protocol+o;d.head.appendChild(ai);})(window, document, "//vdo.ai/core/w3layouts/vdo.ai.js");
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="" src="assets/blp/js(2)"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-125810435-1');
</script><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-30027142-1', 'w3layouts.com');
ga('send', 'pageview');
</script>
<!---728x90--->
<div class="agileits_main">
<!-- header -->
<div class="container">
<div class="agile_logo">
<div class="container">
<div class="col-lg-2">
<a class="logo" href="#" style="display:flex"><img src="assets/images/blplogo.png" alt="logo"> </a>
</div>
<div class="col-lg-10">
<div class="banner_text">
<h3 >BOMBAY LEPROSY PROJECT</h3>
<p>Reach Out And Provide The Healing Touch</p>
</div>
</div>
</div>
</div>
</div>
<!-- menu -->
<script type="text/javascript" src="assets/blp/main.js.download"></script>
<!-- //menu -->
<!--// header -->
<!---728x90--->
<!-- banner -->
<section id="gradient" >
<div class="w3_banner" >
<div class="container">
<!--parallex-->
<div class="swiper-container">
<!-- <div class="parallax-bg" style="background-image:url(http://lorempixel.com/900/600/nightlife/2/)" data-swiper-parallax="-23%"></div> -->
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="title" data-swiper-parallax="-300">About Bombay Leprosy Project</div>
<img src="assets/images/blpmain.JPG" class="img-responsive" style="width: 45% ;float: right" >
<div class="subtitle" data-swiper-parallax="-200"></div><br>
<div class="text" data-swiper-parallax="-100 " >
<p style="font-size: 1vw;">Bombay Leprosy Project (BLP) is an internationally recognized Non Governmental charitable organization established in the year 1976 with the objective of working for the cause of leprosy and to improve the quality of life of leprosy patients entirely through public donations. Since 1976 the organization has been working relentlessly in implementing the policies of National Leprosy Eradication Programme and assisting the Government in its endeavor. Our approach has been to work directly in the community rather than hospital based for diagnosis, treatment and disability of people affected with leprosy. The advantage of community approach being leprosy patients continue to live with their family members and it also helps to eliminate the stigma in the society.</p>
</div>
</div>
<div class="swiper-slide">
<div class="title" data-swiper-parallax="-300" data-swiper-parallax-opacity="0">What is Leprosy?</div>
<img src="assets/images/blpslide.JPG" style="width: 45% ;float:right;" >
<div class="subtitle" data-swiper-parallax="-200"></div>
<div class="text" data-swiper-parallax="-100"><br>
<p>Leprosy, also known as Hansen’s disease, is a chronic infectious disease caused by Mycobacterium leprae. The disease mainly affects the skin, the peripheral nerves, mucosal surfaces of the upper respiratory tract and the eyes. Leprosy is known to occur at all ages ranging from early infancy to very old age. Leprosy is curable and early treatment averts most disabilities.</p>
</div>
</div>
<div class="swiper-slide">
<div class="title" data-swiper-parallax="-300">Slide 3</div>
<div class="subtitle" data-swiper-parallax="-200">Subtitle</div>
<div class="text" data-swiper-parallax="-100">
<p>content slide 3</p>
</div>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination swiper-pagination-white"></div>
<!-- Add Navigation -->
<div class="swiper-button-prev swiper-button-black"></div>
<div class="swiper-button-next swiper-button-black"></div>
</div>
<!-- Swiper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.4.6/js/swiper.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper('.swiper-container', {
speed: 600,
parallax: true,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
});
</script>
<!--parallex-->
<script src="assets/blp/responsiveslides.js.download"></script>
<script>
// You can also use "$(window).load(function() {"
$(function () {
// Slideshow 4
$("#slider4").responsiveSlides({
auto: false,
pager:true,
nav:true,
speed: 500,
namespace: "callbacks",
before: function () {
$('.events').append("<li>before event fired.</li>");
},
after: function () {
$('.events').append("<li>after event fired.</li>");
}
});
});
</script>
</div>
</div>
</section>
</div></div>
<!-- //banner -->
<!-- about -->
<div class="jarallax w3ls-about w3ls-section " id="about">
<div class="container">
<h3 class="h3-heading">about us</h3>
<div class="about-head text-center">
<div class="col-md-4 col-sm-4 col-xs-6 wthree-s1 ">
<span class="fa fa-medkit sicon" aria-hidden="true"></span>
<h4>Head Center</h4>
<p>Bombay Leprosy Project (BLP) is an internationally recognized Non Governmental charitable organization established in the year 1976 with the objective of working</p>
<div class="w3-button">
<a href="" data-toggle="modal" data-target="#myModal1">Read More</a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-6 wthree-s1 s1 s1-active">
<span class="fa fa-user-md sicon" aria-hidden="true"></span>
<h4>Our Team</h4>
<p>BLP has become synonymous with its Founder Director Late Dr Ramaswamy Ganapati a Padmashree awardee in 1983 and Dr Vivek V. Pai, Director who is leading a team of experienced doctors </p>
<div class="w3-button">
<a href="" data-toggle="modal" data-target="#myModal2">Read More</a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-6 wthree-s1">
<span class="fa fa-ambulance sicon" aria-hidden="true"></span>
<h4>Our Achievements</h4>
<p><b>Undaunted by different odds and several constraints, BLP forges ahead in its mission and vision towards the goal of "WORLD WITHOUT LEPROSY"</b><br></p>
<div class="w3-button">
<a href="" data-toggle="modal" data-target="#myModal3">Read More</a>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!-- //about -->
<!-- Tooltip -->
<div class="tooltip-content">
<div class="modal fade features-modal" id="myModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-md">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title text-center">BLP</h4>
</div>
<div class="modal-body">
<p> <font>
<br><br>Apart from diagnosis and treatment of patients, the Project has been carrying out Operational and Technical Research in the field of leprosy and has published over 350 scientific papers in Indian and International journals. The efforts of BLP have been highly recognized for its excellence in Leprosy research.<br><br>
Nerve damage along with its consequences and non healing ulcers in limbs can render a patient completely incapacitated. Persons affected with leprosy related disability from Mumbai and Thane districts are provided with prevention of disability and medical services at patients' doorsteps by a team of paramedical workers and community volunteers. The services include dressing of ulcers, provision of various splints, aids appliances special Micro Cellular Rubber (MCR) footwears with follow up services. Rehabilitation services to persons affected with leprosy along with physically challenged persons are provided under Integrated Rehabilitation Programme.
</font> </p>
</div>
</div>
</div>
</div>
</div>
<div class="tooltip-content">
<div class="modal fade features-modal" id="myModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-md">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title text-center">Our Team</h4>
</div>
<div class="modal-body">
<p class = "second"><font face = "Times New Roman">BLP has become synonymous with its Founder Director Late Dr Ramaswamy Ganapati a Padmashree awardee in 1983 and Dr Vivek V. Pai, Director who is leading a team of experienced doctors, paramedical field staff and community volunteers along with equally supportive administrative staff who have contributed significantly to the progress of BLP.
<br> It would be prudent to mention that BLP is a NGO registered under Bombay Public Trusts Act and renowned and eminent personalities from Medical, Public Health, Legal and Social fields are the functioning Trustees. The board of Trustees provide the team guidance, advice and continued support.
</font></p>
</div>
</div>
</div>
</div>
</div>
<div class="tooltip-content">
<div class="modal fade features-modal" id="myModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-md">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title text-center">Our Achievements</h4>
</div>
<div class="modal-body">
<p> <font><b>Undaunted by different odds and several constraints, BLP forges ahead in its mission and vision towards the goal of "WORLD WITHOUT LEPROSY"</b><br><br>
- Reached 1.95 million people, of which 60% are from slums like Dharavi and other slums of Mumbai.
<br> - So far more than 35,000 patients have been cured.
<br> - More than 300 persons affected with leprosy and physically challenged individuals have been rehabilitated.
<br> - Several Doctors, Paramedical workers, healthcare workers and community volunteers are trained in leprosy healthcare.<br><br>
With your generous support we wish to enlarge the scope of our services and expertise to reach the unreached. We are committed to improve the quality of life of leprosy patients by sustaining quality services of leprosy relief work.
</font></p>
</div>
</div>
</div>
</div>
</div>
<!-- //Tool
<!-- //Tooltip -->
<div class="jarallax w3ls-services w3ls-section" id="services">
<div class=".container-fluid">
<h3 class="h3-heading">Social Role</h3>
<div class="services-head text-center">
<h4>the skill to heal.the spirit to care</h4>
<p>Fusce et congue nibh, ut ullamcorper magna. Donec ac massa tincidunt, fringilla sapien vel, tempus massa. Vestibulum felis leo, tincidunt sit amet tristique accumsan. In vitae dapibus metus. Donec nec massa non nulla mattis aliquam egestas et mi.</p>
</div>
</div>
<div class="about-head text-center">
<div class="col-md-4 col-sm-4 col-xs-6 wthree-s1 ">
<span class="fa fa-medkit sicon" aria-hidden="true"></span>
<h4>HEAD CENTER</h4>
<p>Bombay Leprosy Project (BLP) is an internationally recognized Non Governmental charitable organization established in the year 1976 with the objective of working</p>
<div class="w3-button">
<a href="" data-toggle="modal" data-target="#myModal4">Read More</a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-6 wthree-s1 s1 s1-active">
<span class="fa fa-user-md sicon" aria-hidden="true"></span>
<h4>Our Team</h4>
<p>BLP has become synonymous with its Founder Director Late Dr Ramaswamy Ganapati a Padmashree awardee in 1983 and Dr Vivek V. Pai, Director who is leading a team of experienced doctors </p>
<div class="w3-button">
<a href="" data-toggle="modal" data-target="#myModal5">Read More</a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-6 wthree-s1">
<span class="fa fa-ambulance sicon" aria-hidden="true"></span>
<h4>OUR ACHIEVEMENTS</h4>
<p><b>Undaunted by different odds and several constraints, BLP forges ahead in its mission and vision towards the goal of "WORLD WITHOUT LEPROSY"</b><br></p>
<div class="w3-button">
<a href="" data-toggle="modal" data-target="#myModal6">Read More</a>
</div>
</div>
<div class="clearfix"></div>
</div>
<!-- <div class="wthree-services-bottom">
<div class="container">
<div class="col-md-3 col-sm-3 col-xs-6 wthree-sb1 ">
<span class="fa fa-certificate sicon" aria-hidden="true"></span>
<span class="num">01</span><h4>service1</h4>
<p>Referral Centres</p>
</div>
<div class="col-md-3 col-sm-3 col-xs-6 wthree-sb1 sb1">
<span class="fas fa-heartbeat sicon" aria-hidden="true"></span>
<span class="num">02</span><h4>service2</h4>
<p>Prevention of Disability Services</p>
</div>
<div class="col-md-3 col-sm-3 col-xs-6 wthree-sb1 sb2">
<span class="fa fa-star-o sicon" aria-hidden="true"></span>
<span class="num">03</span><h4>service3</h4>
<p>Rehabilitation.</p>
</div>
<div class="col-md-3 col-sm-3 col-xs-6 wthree-sb1">
<span class="fa fa-plus-circle sicon" aria-hidden="true"></span>
<span class="num">04</span><h4>service4</h4>
<p>Technical Support to 23 Municipal Health Posts in Mumbai</p>
</div>
<div class="clearfix"></div>
</div>
</div>-->
</div>
<div id="grid-gallery" class="grid-gallery">
<div class="container">
<h3 class="h3-heading">Gallery</h3>
<section class="grid-wrap">
<ul class="grid" style="position: relative; height: 1113.3px;">
<li class="grid-sizer" style="position: absolute; left: 0px; top: 0px;"></li><!-- for Masonry column width -->
<li style="position: absolute; left: 0px; top: 0px;">
<figure>
<img src="assets/images/image-1.jpg" alt="img01">
</figure>
</li>
<li style="position: absolute; left: 285px; top: 0px;">
<figure>
<img src="assets/images/image-2.jpg" alt="img02">
</figure>
</li>
<li style="position: absolute; left: 570px; top: 0px;">
<figure>
<img src="assets/images/image-12.jpg" alt="img03">
</figure>
</li>
<li style="position: absolute; left: 855px; top: 0px;">
<figure>
<img src="assets/images/image-3.jpg" alt="img04">
</figure>
</li>
<li style="position: absolute; left: 0px; top: 185px;">
<figure>
<img src="assets/images/image-4.jpg" alt="img05">
</figure>
</li>
<li style="position: absolute; left: 285px; top: 185px;">
<figure>
<img src="assets/images/image-5.jpg" alt="img06">
</figure>
</li>
<li style="position: absolute; left: 570px; top: 185px;">
<figure>
<img src="assets/images/image-6.jpg" alt="img01">
</figure>
</li>
<li style="position: absolute; left: 855px; top: 185px;">
<figure>
<img src="assets/images/image-7.jpg" alt="img02">
</figure>
</li>
<li style="position: absolute; left: 0px; top: 371px;">
<figure>
<img src="assets/images/image-8.jpg" alt="img03">
</figure>
</li>
<li style="position: absolute; left: 285px; top: 371px;">
<figure>
<img src="assets/images/image-9.jpg" alt="img04">
</figure>
</li>
<li style="position: absolute; left: 570px; top: 371px;">
<figure>
<img src="assets/images/image-10.jpg" alt="img05">
</figure>
</li>
<li style="position: absolute; left: 855px; top: 371px;">
<figure>
<img src="assets/images/image-11.jpg" alt="img01">
</figure>
</li>
</ul>
<div class="clearfix"></div>
</section><!-- // grid-wrap -->
<section class="slideshow">
<ul>
<li>
<figure>
<figcaption>
<h3>BOMBAY LEPROSY PROJECT</h3>
<p>Kale chips lomo biodiesel stumptown Godard Tumblr, mustache sriracha tattooed cray aute slow-carb placeat delectus. Letterpress asymmetrical fanny pack art party est pour-over skateboard anim quis, ullamco craft beer.</p>
</figcaption>
<img src="assets/images/image-1.jpg" alt="img01" width="400" height="400">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>BOMBAY LEPROSY PROJECT</h3>
<p>Chillwave Echo Park Etsy organic Cosby sweater seitan authentic pour-over. Occupy wolf selvage bespoke tattooed, cred sustainable Odd Future hashtag butcher.</p>
</figcaption>
<img src="assets/images/image-2.jpg" alt="img02" width="400" height="400">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>BOMBAY LEPROSY PROJECT</h3>
<p>IPhone PBR polaroid before they sold out meh you probably haven't heard of them leggings tattooed tote bag, butcher paleo next level single-origin coffee photo booth.</p>
</figcaption>
<img src="assets/images/image-12.jpg" alt="img03" width="400" height="400">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Chillwave nihil occupy</h3>
<p>Vice cliche locavore mumblecore vegan wayfarers asymmetrical letterpress hoodie mustache. Shabby chic lomo polaroid, scenester 8-bit Portland Pitchfork VHS tote bag.</p>
</figcaption>
<img src="assets/images/image-3.jpg" alt="img04" width="400" height="400">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Kale chips lomo biodiesel</h3>
<p>Chambray Schlitz pug YOLO, PBR Tumblr semiotics. Flexitarian YOLO ennui Blue Bottle, forage dreamcatcher chillwave put a bird on it craft beer Etsy.</p>
</figcaption>
<img src="assets/images/image-4.jpg" alt="img05" width="400" height="400">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Exercitation occaecat</h3>
<p>Cosby sweater hella lomo Thundercats VHS occupy High Life. Synth pop-up readymade single-origin coffee, fanny pack tousled retro. Fingerstache mlkshk ugh hashtag, church-key ethnic street art pug yr.</p>
</figcaption>
<img src="assets/images/image-5.jpg" alt="img06" width="400" height="400">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>BOMBAY LEPROSY PROJECT</h3>
<p>Ethnic readymade pug, small batch XOXO Odd Future normcore kogi food truck craft beer single-origin coffee banh mi photo booth raw denim. XOXO messenger bag pug VHS. Forage gluten-free polaroid, twee hoodie chillwave Helvetica.</p>
</figcaption>
<img src="assets/images/image-6.jpg" alt="img01" width="400" height="400"width="400" height="400">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Exercitation occaecat</h3>
<p>Thundercats pour-over four loko skateboard Brooklyn, Etsy sriracha leggings dreamcatcher narwhal authentic 3 wolf moon synth Portland. Shabby chic photo booth Blue Bottle keffiyeh, McSweeney's roof party Carles.</p>
</figcaption>
<img src="assets/images/image-7.jpg" alt="img02">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>BOMBAY LEPROSY PROJECT</h3>
<p>Ennui Blue Bottle shabby chic, organic butcher High Life tattooed meggings jean shorts Brooklyn sartorial polaroid. Cray raw denim +1, bespoke High Life Odd Future banh mi chillwave Marfa kogi disrupt paleo direct trade 90's Godard. </p>
</figcaption>
<img src="assets/images/image-8.jpg" alt="img03">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>BOMBAY LEPROSY PROJECT</h3>
<p>Typewriter authentic PBR, iPhone mixtape fixie post-ironic fingerstache Pitchfork artisan. Wayfarers master cleanse occupy, Tonx lo-fi swag Truffaut irony whatever Blue Bottle readymade PBR gluten-free. Lomo Pinterest Banksy fap. Retro ennui you probably haven't heard of them iPhone, PBR fashion axe polaroid.</p>
</figcaption>
<img src="assets/images/image-9.jpg" alt="img04">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Bushwick selvage synth</h3>
<p>Schlitz deserunt pour-over consectetur. Selfies plaid asymmetrical farm-to-table, cred gastropub photo booth narwhal non roof party velit raw denim slow-carb meggings pug. Tempor post-ironic seitan cliche bicycle rights. Meh viral Williamsburg, quinoa 8-bit kale chips YOLO Marfa accusamus.</p>
</figcaption>
<img src="assets/images/a.jpg" alt="img05">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Bottle wayfarers locavore</h3>
<p>Aliqua High Life art party fixie farm-to-table. Kitsch Echo Park shabby chic, narwhal fugiat Cosby sweater asymmetrical gastropub tofu. Authentic minim Pinterest Blue Bottle beard, aliqua chia XOXO dolor freegan banh mi vegan fugiat.</p>
</figcaption>
<img src="assets/images/b.jpg" alt="img01">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>BOMBAY LEPROSY PROJECT</h3>
<p>Pickled hoodie Pinterest 90's proident church-key chambray. Salvia incididunt slow-carb ugh skateboard velit, flannel authentic hoodie lomo fixie photo booth farm-to-table. Minim meggings Bushwick, semiotics Vice put a bird.</p>
</figcaption>
<img src="assets/images/c.jpg" alt="img01">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Vice velit chia</h3>
<p>Tattooed assumenda chambray cray officia. 90's mollit ethnic church-key ex eu pop-up gentrify. Tonx raw denim eu, bitters nesciunt distillery Neutra pop-up. Drinking vinegar Helvetica Truffaut tattooed.</p>
</figcaption>
<img src="assets/images/d.jpg" alt="img02">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Brunch semiotics</h3>
<p>Gentrify High Life adipisicing, duis slow-carb kogi Tumblr raw denim freegan Echo Park. Fingerstache laboris pork belly messenger bag, you probably haven't heard of them vegan twee Intelligentsia Vice Etsy pickled put a bird on it Godard roof party. Meggings small batch dreamcatcher velit.</p>
</figcaption>
<img src="assets/images/e.jpg" alt="img03">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Chillwave nihil occupy</h3>
<p>Marfa exercitation non, beard +1 hashtag cardigan gluten-free mixtape church-key ugh eu Portland leggings. Ennui farm-to-table fingerstache keytar Echo Park tattooed. Seitan qui artisan, aliquip cupidatat sunt Portland wayfarers duis.</p>
</figcaption>
<img src="assets/images/f.jpg" alt="img04">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Kale chips lomo biodiesel</h3>
<p>Lomo church-key whatever, seitan laborum drinking vinegar lo-fi semiotics nihil meh. Skateboard irure before they sold out Banksy. Narwhal High Life lomo aliqua drinking vinegar. PBR&B placeat proident, craft beer forage DIY nostrud meh flexitarian keytar Helvetica.</p>
</figcaption>
<img src="assets/images/g.jpg" alt="img05">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Exercitation occaecat</h3>
<p>Skateboard Truffaut bicycle rights seitan normcore. Culpa lo-fi ennui, Pinterest before they sold out Echo Park roof party sapiente aesthetic consequat Truffaut freegan voluptate. Kogi banh mi vero nihil, freegan gluten-free cliche. Forage Etsy laboris anim normcore, McSweeney's ex.</p>
</figcaption>
<img src="assets/images/h.jpg" alt="img06">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Selfies viral four</h3>
<p>Viral roof party locavore flexitarian nihil fanny pack actually Odd Future anim commodo. Sunt yr aute, enim quis plaid sartorial duis leggings lo-fi gluten-free. Tote bag flexitarian pug stumptown, Cosby sweater try-hard ethnic scenester. Mumblecore +1 hoodie accusamus skateboard slow-carb, Thundercats Godard placeat craft beer meh enim trust fund.</p>
</figcaption>
<img src="assets/images/i.jpg" alt="img01">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Photo booth skateboard</h3>
<p>Culpa pour-over cray nesciunt dreamcatcher. Meggings distillery cillum raw denim voluptate, single-origin coffee lo-fi ethical iPhone four loko nihil salvia. Biodiesel ea Intelligentsia quis deep v, American Apparel trust fund slow-carb synth semiotics quinoa Brooklyn pour-over nulla Godard.</p>
</figcaption>
<img src="assets/images/j.jpg" alt="img02">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Ex fashion axe</h3>
<p>Bespoke irony tousled nihil flexitarian, salvia tempor nostrud Bushwick hashtag Austin ethnic disrupt. Beard Helvetica nihil, chia craft beer Wes Anderson keytar dolore. Irure incididunt flexitarian photo booth cillum, YOLO deserunt Brooklyn artisan. Brunch assumenda irony, Blue Bottle roof party DIY ullamco quis.</p>
</figcaption>
<img src="assets/images/a.jpg" alt="img03">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Thundercats next level</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea.</p>
</figcaption>
<img src="assets/images/b.jpg" alt="img04">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Bushwick selvage synth</h3>
<p>Ethical Truffaut tofu food truck cred cornhole. Irure umami Austin cornhole blog ethical. Aliqua yr Truffaut, adipisicing hashtag Shoreditch eiusmod tempor literally vinyl.</p>
</figcaption>
<img src="assets/images/c.jpg" alt="img05">
</figure>
</li>
<li>
<figure>
<figcaption>
<h3>Bottle wayfarers locavore</h3>
<p>Pork belly irony Shoreditch fashion axe DIY. Portland banjo irony, squid gentrify Austin fixie church-key magna. Marfa artisan Echo Park, McSweeney's banjo sunt keytar tofu. Brooklyn PBR single-origin coffee disrupt polaroid ut, gluten-free XOXO plaid magna.</p>
</figcaption>
<img src="assets/images/d.jpg" alt="img01">
</figure>
</li>
</ul>
<nav>
<span class="icon nav-prev"></span>
<span class="icon nav-next"></span>
<span class="icon nav-close"></span>
</nav>
<div class="info-keys icon">Navigate with arrow keys</div>
</section><!-- // slideshow -->
</div>
</div><!-- // grid-gallery -->
<script src="assets/blp/imagesloaded.pkgd.min.js.download"></script>
<script src="assets/blp/masonry.pkgd.min.js.download"></script>
<script src="assets/blp/classie.js.download"></script>
<script src="assets/blp/cbpGridGallery.js.download"></script>
<script>
new CBPGridGallery( document.getElementById( 'grid-gallery' ) );
</script>
<!-- //laboratory-section -->
<!-- team -->
<div class="team w3ls-section" id="team">
<div class="container">
<div class="w3-agileits-team-title">
<h3 class="h3-heading">BOARD OF TRUSTEES</h3>
<div id="horizontalTab" style="display: block; width: 100%; margin: 0px;">
<div class="resp-tabs-container">
<ul class="col-md-6 col-sm-6 resp-tabs-list">
<li class="resp-tab-item resp-tab-active" aria-controls="tab_item-0" role="tab">
<img src="assets/images/user.jpg" alt=" " class="img-responsive">
</li>
<li class="resp-tab-item" aria-controls="tab_item-1" role="tab">
<img src="assets/images/user.jpg" alt=" " class="img-responsive">
</li>
<li class="resp-tab-item" aria-controls="tab_item-2" role="tab">
<img src="assets/images/user.jpg" alt=" " class="img-responsive">
</li>
<li class="resp-tab-item" aria-controls="tab_item-3" role="tab">
<img src="assets/images/user.jpg" alt=" " class="img-responsive">
</li>
</ul>
<h2 class="resp-accordion resp-tab-active" role="tab" aria-controls="tab_item-0"><span class="resp-arrow"></span>
<img src="assets/blp/t1.jpg" alt=" " class="img-responsive">
</h2><div class="tab1 resp-tab-content resp-tab-content-active" style="display:block" aria-labelledby="tab_item-0">
<div class="col-md-6 col-sm-6 team-Info-agileits">
<h4>Mr Bharat Goyal</h4>
<span>Hon. President</span>
<p>Advocate High Court, Mumbai</p>
</div>
<div class="col-md-6 col-sm-6 team-img-w3-agile"></div>
<div class="clearfix"> </div>
</div>
<h2 class="resp-accordion" role="tab" aria-controls="tab_item-1"><span class="resp-arrow"></span>
<img src="assets/blp/t2.jpg" alt=" " class="img-responsive">
</h2><div class="tab2 resp-tab-content" aria-labelledby="tab_item-1">
<div class="col-md-6 col-sm-6 team-Info-agileits">
<h4>Mr Anant P. Deshpande</h4>
<span>Hon. Vice President</span>
<p>Hon. Secretary, Marathi Vidnyan Parishad, Ground Floor, 11, VN Purav Marg, Sion-Chunabhatti, Mumbai 400022</p>
</div>
<div class="col-md-6 col-sm-6 team-img-w3-agile"></div>
<div class="clearfix"> </div>
</div>
<h2 class="resp-accordion" role="tab" aria-controls="tab_item-2"><span class="resp-arrow"></span>
<img src="assets/blp/t3.jpg" alt=" " class="img-responsive">
</h2><div class="tab3 resp-tab-content" aria-labelledby="tab_item-2">
<div class="col-md-6 col-sm-6 team-Info-agileits">
<h4>Dr Vivek V. Pai</h4>
<span>Secretary</span>
<p>Director, Bombay Leprosy Project</p>
</div>
<div class="col-md-6 col-sm-6 team-img-w3-agile"></div>
<div class="clearfix"> </div>
</div>
<h2 class="resp-accordion" role="tab" aria-controls="tab_item-3"><span class="resp-arrow"></span>
<img src="assets/blp/t4.jpg" alt=" " class="img-responsive">
</h2><div class="tab4 resp-tab-content" aria-labelledby="tab_item-3">
<div class="col-md-6 col-sm-6 team-Info-agileits">
<h4>Dr Niranjan G. Nagpur</h4>
<span>Hon. Treasurer</span>
<p>Retd Prof. & H.O.D. of Dermatology, K J Somaiya Medical College, Hospital and Research Centre, Everard Nagar, Sion, Mumbai 400022</p>
</div>
<div class="col-md-6 col-sm-6 team-img-w3-agile"></div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
<!-- <div class="trustee">
<b>Mr Bharat Goyal</b>
<br>Hon. President
<br>Advocate High Court, Mumbai
<br><br><b>Mr Anant P. Deshpande </b>
<br>Hon. Vice President
<br>Hon. Secretary, Marathi Vidnyan Parishad, Ground Floor, 11, VN Purav Marg, Sion-Chunabhatti, Mumbai 400022
<br><br><b>Dr Vivek V. Pai</b>
<br>Secretary
<br>Director, Bombay Leprosy Project
<br><br><b>Dr Niranjan G. Nagpur</b>
<br>Hon. Treasurer
<br>Retd Prof. & H.O.D. of Dermatology, K J Somaiya Medical College, Hospital and Research Centre, Everard Nagar, Sion, Mumbai 400022
<br><br><b>Dr Rasiklal G. Valia</b>
<br>Hon. Member
<br>Prof. & Head (Rtd.), Dept of Dermatology & Venereology L.T.M. Medical College & Gen. Hospital, Sion, Mumbai 400022
<br><br><b>Dr Narayan B. Iyer</b>
<br>Hon. Member
<br>CEO & National Co-ordinator, Indian Development Foundation, L 10/3 & 4, Jal Ratan Deep, Bangur Nagar, Goregaon (W),Mumbai 400 104.
<br><br><b>Dr Chetan Oberai</b>
<br>Hon. Member
<br>Prof. Emeritus - Grant Medical College & Sir J.J. Group of Hospitals, Mumbai
<br><br><b>Mr Kunal R. Chaudhari</b>
<br>Hon. Member
<br>Advocate & Sr Counsel, Govt. of India High Court, Law Library, 2nd floor, Room no. 39, Fountain, Mumbai 400032
<br><br><b>Dr Bindoo S. Jadhav</b>
<br>Hon. Member
<br>Associate Prof, Dept of Psychiatry, KJ Somaiya Medical College, Hospital and Research Centre, Everard Nagar, Sion, Mumbai 400022
<br><br><b>Dr Rajiv S. Narvekar</b>
<br>Hon. Member
<br>Director in Tata Consultancy Services, Technology & Innovation Office
<br><br><b>Mr Tukaram P. Mirajkar</b>
<br>Hon. Member
<br>Retired Principal& Head of the Dept. of Prosthetics & Orthotics, All India Institute of Physical Medicine & Rehabilitation
-->
</div>
</div>
</div>
<!-- //team -->
<!-- contact -->
<div class="contact w3ls-section" id="contact">
<div class="container">
<h3 class="h3-heading">get in touch</h3>
<div class="contact-grids">
<div class="col-md-6 col-sm-6 contact-left">
<form action="#" method="post" style="text-decoration-color: #fff">
<input type="text" class="name" name="name" placeholder="First Name" required="">
<input type="text" class="name" name="name" placeholder="Last Name" required="">
<input type="email" class="name" name="name" placeholder="Email" required="">
<input type="text" class="name" name="name" placeholder="Subject" required="">
<textarea placeholder="Your Message" required=""></textarea>
<input type="submit" value="SEND">
</form>
</div>
<div class="col-md-6 col-sm-6 contact-left" data-wow-duration="2s" data-wow-delay="0.5s">
<h2>Contact Information</h2>
<p>If you have any questions about this privacy statement, the practices of this site, or your dealings with this Web site, or for more information on our terms and conditions of use, please contact: <br><br>
</p>
<ul class="contact-list">
<li><span class="glyphicon glyphicon-map-marker" aria-hidden="true"></span><b></b><br>
11 V.N.Purav Marg,<br>
Sion-Chunabhatti,<br>
Mumbai-400022, India.<br><br></li>
<li><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span><a href="mailto:bombayleprosy@gmail.com">bombayleprosy@gmail.com</a></li>
<li><span class="glyphicon glyphicon-earphone" aria-hidden="true"></span>Mobile:9967944004</li>
<li><span class="glyphicon glyphicon-earphone" aria-hidden="true"></span>Tel: 91-22-24054608 / 24057040 / 24036513<br><br></li>
</ul>
<ul class="social-icons3">
<li><a href="#" class="fa fa-facebook icon-border facebook"> </a></li>
<li><a href="#" class="fa fa-twitter icon-border twitter"> </a></li>
<li><a href="#" class="fa fa-google-plus icon-border googleplus"> </a></li>
<li><a href="#" class="fa fa-rss icon-border rss"> </a></li>
</ul>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<!-- //contact -->
<!---728x90--->
<!-- footer-->
<div class="agileits_w3layouts-footer">
<div class="copy-right text-center">
<p>powered by
<span >
<img class ="" style="width: 3em; font:'Raleway', 'sans-serif';" src="assets/images/sakeclogo.png"></span>
SHAH AND ANCHOR KUTCHHI ENGINEERING COLLEGE</p>
</div>
</div>
<!-- footer-->
<script src="assets/blp/jarallax.js.download"></script>
<script src="assets/blp/SmoothScroll.min.js.download"></script>
<script type="text/javascript">
/* init Jarallax */
$('.jarallax').jarallax({
speed: 0.5,
imgWidth: 1366,
imgHeight: 768
})
</script>
<!-- here starts scrolling icon -->
<!-- start-smoth-scrolling -->
<script type="text/javascript" src="assets/blp/move-top.js.download"></script>
<script type="text/javascript" src="assets/blp/easing.js.download"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
<!-- /ends-smoth-scrolling -->
<!-- //here ends scrolling icon -->
<!--start-date-piker-->
<link rel="stylesheet" href="assets/blp/jquery-ui.css">
<script>
$(function() {
$( "#datepicker,#datepicker1" ).datepicker();
});
</script>
<!-- //End-date-piker -->
<!-- here starts scrolling icon -->
<script type="text/javascript">
$(document).ready(function() {
/*
var defaults = {
containerID: 'toTop', // fading element id
containerHoverID: 'toTopHover', // fading element hover id
scrollSpeed: 1200,
easingType: 'linear'
};
*/
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
<!--tabs-->
<script src="assets/blp/easy-responsive-tabs.js.download"></script>
<script>
$(document).ready(function () {
$('#horizontalTab').easyResponsiveTabs({
type: 'default', //Types: default, vertical, accordion
width: 'auto', //auto or any width like 600px
fit: true, // 100% fit in a container
closed: 'accordion', // Start closed if in accordion view
activate: function(event) { // Callback function if tab is switched
var $tab = $(this);
var $info = $('#tabInfo');
var $name = $('span', $info);
$name.text($tab.text());
$info.show();
}
});