-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathroomInfo.json
1850 lines (1850 loc) · 53 KB
/
roomInfo.json
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
{
"room223": {
"title": "Stephanie Mosher",
"picture": "MosherStephanie.jpeg",
"detail": [
"Digital Media Technologist<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-3383"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room224": {
"title": "Karen Pinto",
"picture": "PintoKaren.jpeg",
"detail": [
"Digital Media Technologist<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-1499"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room225": {
"title": "Dr. David Lees",
"picture": "LeesDavid.jpg",
"detail": [
"Executive Director<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-1773"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room226": {
"title": "Joe Montcalmo",
"picture": "MontcalmoJoe.jpeg",
"detail": [
"Senior Director, Instructional Technology & Design Services<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-3258"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room227": {
"title": "Al Labonis",
"picture": "LabonisAl.jpeg",
"detail": [
"Manager, Learning Management System<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-1772"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room161": {
"title": "Gerri Maletta",
"picture": "MalettaGerri.jpeg",
"detail": [
"Senior Administrative Assistant II<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-3250"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room162": {
"title": "Chontel Delaney",
"picture": "DelaneyChontel.jpeg",
"detail": [
"Instructional Design Specialist<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-3312"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room163": {
"title": "Mary Ann McMenamin",
"picture": "McMenaminMaryAnn.jpeg",
"detail": [
"Copyright & Compliance Officer<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-3257"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room164": {
"title": "Don Lowing",
"picture": "LowingDon.jpeg",
"detail": [
"Senior Digital Media Technologist<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-3254"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room165": {
"title": "Andy Starr",
"picture": "StarrAndy.jpeg",
"detail": [
"Faculty Engagement, Innovation, & Technology Management<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-1769"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room166": {
"title": "Kathy Scarpato",
"picture": "ScarpatoKathy.jpeg",
"detail": [
"Instructional Design Specialist<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-3266"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"room170": {
"title": "Ben Jezyk",
"picture": "JezykBen.jpeg",
"detail": [
"Director of Technical Services<br>",
"Contact:<br>",
"<a href=\"mailto:[email protected]\">[email protected]</a><br>",
"(610) 660-3251"
],
"further": {
"link": "<a href=\"http://www.sju.edu/int/academics/resources/atdl/index.html\" target=\"_blank\"></a>",
"click": "Visit our website"
}
},
"referenceCollection": {
"title": "Reference Collection",
"picture": "referenceCollection.JPG"
},
"reference": {
"title": "Reference Books",
"picture": "reference.JPG"
},
"newspaperIndex": {
"title": "Newspaper Indexes",
"picture": "newspaperIndex.JPG"
},
"periodicalNewspaper": {
"title": "Periodicals and Newspaper",
"picture": "periodical1.JPG"
},
"atlases": {
"title": "Atlases",
"picture": "atlases.JPG"
},
"mediaCollection": {
"title": "Media Collection",
"picture": "mediaCollection.JPG",
"detail": "Video and audio collections"
},
"periodicals": {
"title": "Periodical Collection",
"picture": "periodicals.JPG"
},
"s1": {
"title": "OVERSIZED BOOKS",
"picture": "oversized.JPG",
"detail": "Call No.<br>Folio A to Folio Z",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s2": {
"title": "OVERSIZED BOOKS",
"picture": "oversized.JPG",
"detail": "Call NO.<br>AC1 to B1",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s3": {
"title": "PHILOSOPHY",
"picture": "philosophy.JPG",
"detail": "Call No.<br>B1 to B21<br>B21 to B738",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s4": {
"title": "PHILOSOPHY",
"picture": "philosophy.JPG",
"detail": "Call No.<br>B740.174 to B851<br>B851 to B2430",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s5": {
"title": "PHILOSOPHY",
"picture": "philosophy.JPG",
"detail": "Call No.<br>B2430 to B3501<br>B3580 to BD232",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s6": {
"title": "PSYCHOLOGY",
"picture": "psychology.JPG",
"detail": "Call No.<br>BD232 to BF1<br>BF1 to BF 161",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s7": {
"title": "PSYCHOLOGY",
"picture": "psychology.JPG",
"detail": "Call No.<br>BF 311 to BF 697<br>BF 161 to BF 311",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s8": {
"title": "PSYCHOLOGY",
"picture": "psychology.JPG",
"detail": "Call No.<br>BJ 1 to BL 1<br>BF 697 to BJ 1 ",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s9": {
"title": "PSYCHOLOGY",
"picture": "psychology.JPG",
"detail": "Call No.<br>BL 240.3 to BM 205 <br>BL 1 to BL 240.2",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s10": {
"title": "PSYCHOLOGY",
"picture": "psychology.JPG",
"detail": "Call No.<br>BR 1A5 to BR 60 C807<br>BM 205 M67 to BR 1 A1 E55",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s11": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>BR 60 to BR 145 <br>BR 145.2 to BR 794 ",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s12": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>BR794 to BS531<br>BS 531 to BS 2595.2",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s13": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>BS2595.3P73 to BT301<br>BT301 to BV175",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s14": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>BV176 to BX1E34<br>BX1 to BX801",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s15": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>BX801 to BX801<br>BX801 to BX922",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s16": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>BX923 to BX1491<br>BX1491 to BX1970E63",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s17": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>BX 1970 to BX 2350<br>BX 2435 to BX 4655<br>BX 2350 to BX 2350.5M2<br>BX 2350.5 to BX 2435",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s18": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>BX 4655 to BX 4705<br>BX4705 to BX4705<br>BX4705 to BX5133",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s19": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>BX5133 to BX8947<br>BX8952 to CB245",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s20": {
"title": "RELIGION",
"picture": "religion.JPG",
"detail": "Call No.<br>CB 245 to CD 950<br>CD950 to CT9990",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s21": {
"title": "EUROPEAN HISTORY",
"picture": "europeanHistory.JPG",
"detail": "Call No.<br>D1 to D1<br>D1 to D105<br>D15 to D105",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s22": {
"title": "EUROPEAN HISTORY",
"picture": "europeanHistory.JPG",
"detail": "Call No.<br>D106 to D410<br>D410 to D521<br>D106 to D257.25<br>D410 to D521",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s23": {
"title": "EUROPEAN HISTORY",
"picture": "europeanHistory.JPG",
"detail": "Call No.<br>D 521 to D 743<br>D 820 to D 972<br>D 748 to D 773<br>D 773 to D 820",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s24": {
"title": "EUROPEAN HISTORY",
"picture": "europeanHistory.JPG",
"detail": "Call No.<br>D 972 to DA 32S<br>DA 32 to DA 195<br>DA 195 to DA 355 1821",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s25": {
"title": "EUROPEAN HISTORY",
"picture": "europeanHistory.JPG",
"detail": "Call No.<br>DA 355 to DA445<br>DA445 to DA506",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s26": {
"title": "EUROPEAN HISTORY",
"picture": "europeanHistory.JPG",
"detail": "Call No.<br>DA506 to DA550<br>DA550 to DA566.7",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s27": {
"title": "EUROPEAN HISTORY",
"picture": "europeanHistory.JPG",
"detail": "Call No.<br>DA566.7 to DA586<br>DA 589.7 to DA 750<br>DA 750 to DB 35.5B64",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s28": {
"title": "EUROPEAN HISTORY",
"picture": "europeanHistory.JPG",
"detail": "Call No.<br>DB 35.5 to DC 3<br>DC 148 to DC 600<br>DC 6 to DC 111<br>DC 111 to DC 148",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s29": {
"title": "EUROPEAN HISTORY",
"picture": "europeanHistory.JPG",
"detail": "Call No.<br>DC 611 to DD 21.5H34<br>DD 261.7H66 to DF 605<br>DD 221.5339 to DD 247L<br>DD 247 to DD 261.4H23",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s30": {
"title": "WORLD HISTORY",
"picture": "worldHistory.JPG",
"detail": "Call No.<br>DF 605 to DG 467<br>DK 131 to DK 266<br>DH 523 to DK 266<br>DG 467 to DH 521",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s31": {
"title": "WORLD HISTORY",
"picture": "worldHistory.JPG",
"detail": "Call No.<br>DK 266 to DK 275<br>DQ 24 to DR 577<br>DK 4329 to DQ 23<br>DK 275 to DK 4329",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s32": {
"title": "WORLD HISTORY",
"picture": "worldHistory.JPG",
"detail": "Call No.<br>DR 701 to DS 41<br>DS 119.7.027 to DS 223<br>DS 79.724 to DS 119.7N657<br>DS 41 to DS 79.724",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s33": {
"title": "WORLD HISTORY",
"picture": "worldHistory.JPG",
"detail": "Call No.<br>DS 223 to DS 557<br>DS 777.55S67 to DT 12<br>DS 557 to DS 706<br>DS 736 to DS 777.55S49",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s34": {
"title": "WORLD HISTORY",
"picture": "worldHistory.JPG",
"detail": "Call No.<br>DT 12 to DT 834<br>E 169.1 C97D to E 171<br>DT 846 to E 98<br>E 98 to E 169.1C97",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s35": {
"title": "U.S. HISTORY",
"picture": "usHistory.JPG",
"detail": "Call No.<br>E 171 to E 178<br>E 178 to E 183.8<br>E183.8 to E184",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s36": {
"title": "U.S. HISTORY",
"picture": "usHistory.JPG",
"detail": "Call No.<br>E184 to E185.615<br>E185.615 to E207",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s37": {
"title": "U.S. HISTORY",
"picture": "usHistory.JPG",
"detail": "Call No.<br>E 207 L2 to E 302 M38<br>E 302 to E 332",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s38": {
"title": "U.S. HISTORY",
"picture": "usHistory.JPG",
"detail": "Call No.<br>E332 to E415.9<br>E 415.9d to E 457.91 1953<br>E 457.91 to E 746.7",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s39": {
"title": "U.S. HISTORY",
"picture": "usHistory.JPG",
"detail": "Call No.<br>E 664.B6 to E 774.5<br>E 744.5 to E785<br>E 476.93 to E 664 Y<br>E 786 to E 842 ",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s40": {
"title": "HISTORY OF THE AMERICAS",
"picture": "historyOfTheAmericas.JPG",
"detail": "Call No.<br>E 842.1 to F 128.35W<br>F 221 to F 375 K52<br>F 128.37 to F 158.37<br>F 158.37 to F 221",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s41": {
"title": "HISTORY OF THE AMERICAS",
"picture": "historyOfTheAmericas.JPG",
"detail": "Call No.<br>F 375 to F 866<br>F 866 to F1219.3<br>F1219.3 to F1401",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s42": {
"title": "HISTORY OF THE AMERICAS",
"picture": "historyOfTheAmericas.JPG",
"detail": "Call No.<br>F1401 to F1414<br>F1414 to F1543.8",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s43": {
"title": "HISTORY OF THE AMERICAS",
"picture": "historyOfTheAmericas.JPG",
"detail": "Call No.<br>F1544 to F2237<br>F2258 to F3081",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s44": {
"title": "HISTORY OF THE AMERICAS",
"picture": "historyOfTheAmericas.JPG",
"detail": "Call No.<br>F 3081 to G 1<br>G 1 to G 2446.M3<br>G 5741 to SN 24",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s45": {
"title": "HISTORY OF THE AMERICAS",
"picture": "historyOfTheAmericas.JPG",
"detail": "Call No.<br>GT 75 to GV 561 <br>GV 561 to GV 1853.3",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s46": {
"title": "ECONOMICS",
"picture": "economics.JPG",
"detail": "Call No.<br>H1 to HA1<br>HA1 to HB171",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s47": {
"title": "ECONOMICS",
"picture": "economics.JPG",
"detail": "Call No.<br>HB171 to HC65<br>HC68 to HC240",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s48": {
"title": "ECONOMICS",
"picture": "economics.JPG",
"detail": "Call No.<br>HC240 to HD30.28<br>HD30.28 to HD874",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s49": {
"title": "BUSINESS",
"picture": "business.JPG",
"detail": "Call No.<br>HD875 to HD5723<br>HD5723 to HD8073",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s50": {
"title": "BUSINESS",
"picture": "business.JPG",
"detail": "Call No.<br>HD8073 to HF1041<br>HF1041 to HF5415",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s51": {
"title": "BUSINESS",
"picture": "business.JPG",
"detail": "Call No.<br>HF5415.1 to HF5627<br>HF5627 to HG2567",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s52": {
"title": "BUSINESS",
"picture": "business.JPG",
"detail": "Call No.<br>HG2569 to HG4751<br>HG4905 to HM1",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s53": {
"title": "SOCIOLOGY",
"picture": "sociology.JPG",
"detail": "Call No.<br>HM1 to HM131<br>HM131 to HN1",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s54": {
"title": "SOCIOLOGY",
"picture": "sociology.JPG",
"detail": "Call No.<br>HN1 to HN79<br>HN79 to HQ503",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s55": {
"title": "SOCIOLOGY",
"picture": "sociology.JPG",
"detail": "Call No.<br>HQ503 to HQ793<br>HQ796 to HQ1236.5",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s56": {
"title": "SOCIOLOGY",
"picture": "sociology.JPG",
"detail": "Call No.<br>HQ1236.5 to HT1521<br>HT1521 to HV6025",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s57": {
"title": "SOCIOLOGY",
"picture": "sociology.JPG",
"detail": "Call No.<br>HV6025 to HV8719<br>HV8742 to HX653",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s58": {
"title": "POLITICAL SCIENCE",
"picture": "politicalScience.JPG",
"detail": "Call No.<br>HX653 to JC177<br>JC177C to JK128",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s59": {
"title": "POLITICAL SCIENCE",
"picture": "politicalScience.JPG",
"detail": "Call No.<br>JK128 to JK2830<br>JK2830 to JV6455",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s60": {
"title": "POLITICAL SCIENCE",
"picture": "politicalScience.JPG",
"detail": "The JX1-JX9999 classification has been discontinued and new numbers were assigned. Please check the catalog for the new call number.",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s61": {
"title": "POLITICAL SCIENCE",
"picture": "politicalScience.JPG",
"detail": "Call No.<br>K1 to KF 4581<br>KF 4600 to KZD 3489",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s62": {
"title": "POLITICAL SCIENCE",
"picture": "politicalScience.JPG",
"detail": "Call No.<br>L 10 to L 11 .15<br>L 11 to L 13",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s63": {
"title": "EDUCATION",
"picture": "education.JPG",
"detail": "Call No.<br>L 13.N to LB 275<br>LB 275 to LB 1051",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s64": {
"title": "EDUCATION",
"picture": "education.JPG",
"detail": "Call No.<br>LB 1051 to LB 1537<br>LB 1550 to LB 1647",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s65": {
"title": "EDUCATION",
"picture": "education.JPG",
"detail": "Call No.<br>LB1647 to LB 2331.63G55<br>LB 2331.63 to LB 2822.82",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s66": {
"title": "EDUCATION",
"picture": "education.JPG",
"detail": "Call No.<br>LB 2833 to LC 493<br>LC 493 to LF 625",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s67": {
"title": "FINE ARTS",
"picture": "fineArts.JPG",
"detail": "Call No.<br>LF 724 to N2 <br>N2 to NA 1",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s68": {
"title": "FINE ARTS",
"picture": "fineArts.JPG",
"detail": "Call No.<br>NA 1 to ND 1060<br>ND 1130 to P 40.8",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s69": {
"title": "LANGUAGE AND LITERATURE",
"picture": "language&literature.JPG",
"detail": "Call No.<br>P 41 to PA 3131<br>PA 3132 to PA6931",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s70": {
"title": "LANGUAGE AND LITERATURE",
"picture": "language&literature.JPG",
"detail": "Call No.<br>PA 6932 to PC 2074.75<br>PC 2075 to PE 1 ",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s71": {
"title": "LANGUAGE AND LITERATURE",
"picture": "language&literature.JPG",
"detail": "Call No.<br>PE 1 to PE 3727<br>PF 111 to PG 3347",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s72": {
"title": "LANGUAGE AND LITERATURE",
"picture": "language&literature.JPG",
"detail": "Call No.<br>PG 3350 to PM 8999<br>PN 2 to PN 173",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s73": {
"title": "LANGUAGE AND LITERATURE",
"picture": "language&literature.JPG",
"detail": "Call No.<br>PN 175 to PN 1655<br>PN 1657 to PN 2266",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s74": {
"title": "LANGUAGE AND LITERATURE",
"picture": "language&literature.JPG",
"detail": "Call No.<br>PN 2266 to PN 5123<br>PN 5124 to PQ 201",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s75": {
"title": "LANGUAGE AND LITERATURE",
"picture": "language&literature.JPG",
"detail": "Call No.<br>PQ 203.5 to PQ 2161 <br>PQ 2161 to PQ 2611",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s76": {
"title": "LANGUAGE AND LITERATURE",
"picture": "language&literature.JPG",
"detail": "Call No.<br>PQ 2613 to PQ 3989.2<br>PQ 4001 to PQ 6057 ",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s77": {
"title": "LANGUAGE AND LITERATURE",
"picture": "language&literature.JPG",
"detail": "Call No.<br>PQ 6057 to PQ 6629<br>PQ 6631 to PQ9698.29",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s78": {
"title": "ENGLISH LITERATURE",
"picture": "englishLiterature.JPG",
"detail": "Call No.<br>PR 1 to PR 539<br>PR 541 to PR 1195",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s79": {
"title": "ENGLISH LITERATURE",
"picture": "englishLiterature.JPG",
"detail": "Call No.<br>PR 1203 to PR 2734<br>PR 2750 to PR 3318",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s80": {
"title": "ENGLISH LITERATURE",
"picture": "englishLiterature.JPG",
"detail": "Call No.<br>PR 3325 to PR 3991<br>PR 4002 to PR 4489",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s81": {
"title": "ENGLISH LITERATURE",
"picture": "englishLiterature.JPG",
"detail": "Call No.<br>PR 4494 to PR 4749<br>PR 4750 to PR 4989",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s82": {
"title": "ENGLISH LITERATURE",
"picture": "englishLiterature.JPG",
"detail": "Call No.<br>PR 5006 to PR 5398<br>PR 5400 to PR 5795",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s83": {
"title": "ENGLISH LITERATURE",
"picture": "englishLiterature.JPG",
"detail": "Call No.<br>PR 5810 to PR 6005<br>PR 6007 to PR 6025",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s84": {
"title": "ENGLISH LITERATURE",
"picture": "englishLiterature.JPG",
"detail": "Call No.<br>PR 6027 to PR 9919.3<br>PS 1 to PS 352",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s85": {
"title": "ENGLISH LITERATURE",
"picture": "englishLiterature.JPG",
"detail": "Call No.<br>PS 359 to PS 991<br>PS 1004 to PS 1850",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s86": {
"title": "AMERICAN LITERATURE",
"picture": "americanLiterature.JPG",
"detail": "Call No.<br>PS 1852 to PS 2645<br>PS 2649 to PS 3505 ",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s87": {
"title": "AMERICAN LITERATURE",
"picture": "americanLiterature.JPG",
"detail": "Call No.<br>PS 3505 to PS 3511 <br>PS 3511 to PS 3515 ",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s88": {
"title": "AMERICAN LITERATURE",
"picture": "americanLiterature.JPG",
"detail": "Call No.<br>PS 3515 to PS 3525 <br>PS 3525 to PS 3531 ",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s89": {
"title": "AMERICAN LITERATURE",
"picture": "americanLiterature.JPG",
"detail": "Call No.<br>PS 3515 A16 to PS 3545<br>PS 3547 to PS 3663",
"further": {
"link": "<a target=\"_blank\" href=\"http://catalog.sju.edu/\"></a>",
"click": "Search the catalog"
}
},
"s90": {