forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnola.com1.html
More file actions
1604 lines (1025 loc) · 78.4 KB
/
Copy pathnola.com1.html
File metadata and controls
1604 lines (1025 loc) · 78.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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#"> <!--<![endif]-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title> Multimillion-dollar George and Joyce Wein Jazz & Heritage Center opens at edge of Treme | NOLA.com</title>
<!--
<PageMap>
<DataObject type="document">
<Attribute name="article_title">Multimillion-dollar George and Joyce Wein Jazz & Heritage Center opens at edge of Treme</Attribute>
<Attribute name="article_publication_name">NOLA.com</Attribute>
<Attribute name="article_author">Keith Spera, NOLA.com | The Times-Picayune</Attribute>
<Attribute name="article_description">The facility is owned by the New Orleans Jazz & Heritage Foundation</Attribute>
<Attribute name="image_src">http://media.nola.com/tpphotos/photo/2014/12/11/16547879-small.jpg</Attribute>
<Attribute name="article_comments">0</Attribute>
<Attribute name="article_date_original">12/11/2014</Attribute>
<Attribute name="article_date_updated">12/11/2014</Attribute>
</DataObject>
</PageMap>
-->
<meta name='parsely-page' content='{"title": "Multimillion-dollar George and Joyce Wein Jazz & Heritage Center opens at edge of Treme", "link": "http://www.nola.com/jazzfest/index.ssf/2014/12/multi-million-dollar_george_an.html", "image_url": "http://imgick.nola.com/home/nola-media/width620/img/tpphotos/photo/2014/12/11/16547879-large.jpg", "type": "post", "post_id": "14729887", "pub_date": "2014-12-11T19:39:20Z", "author": "Keith Spera, NOLA.com | The Times-Picayune", "tags": ["arts","entertainment","festivals","george wein","homepage","music","new orleans jazz fest 2015","nola-ent","quint davis"] }'>
<meta name='parsely-metadata' content='{"image_url": "http://media.nola.com/tpphotos/photo/2014/12/11/16547879-large.jpg", "author_name": "kspera", "author_nickname": "Keith Spera, NOLA.com | The Times-Picayune", "author_id": "1467", "source_blog_name": "New Orleans Jazz Fest", "source_blog_url": "http://www.nola.com/jazzfest/index.ssf/", "sponsored_content": "0" }'>
<meta name="title" content="Multimillion-dollar George and Joyce Wein Jazz & Heritage Center opens at edge of Treme" />
<meta name="article_publication_name" content="NOLA.com" />
<meta name="article_author" content="Keith Spera, NOLA.com | The Times-Picayune" />
<meta name="article_date_original" content="Thursday, December 11, 2014, 1:40 PM" />
<meta name="article_date_updated" content="Thursday, December 11, 2014, 2:55 PM" />
<link rel="image_src" href="http://media.nola.com/tpphotos/photo/2014/12/11/16547879-small.jpg" />
<meta name="article_comments" content="0" />
<meta name="medium" content="news" />
<meta name="news_keywords" content="arts,entertainment,festivals,george wein,homepage,music,new orleans jazz fest 2015,nola-ent,quint davis">
<meta name="twitter:card" content="summary" />
<meta name="twitter:description" content="The facility is owned by the New Orleans Jazz & Heritage Foundation" />
<meta name="twitter:image" content="http://media.nola.com/tpphotos/photo/2014/12/11/16547879-small.jpg" />
<meta name="twitter:site" content="@nolanews" />
<meta name="twitter:creator" content="@KeithSpera" />
<meta property="og:title" content="Multimillion-dollar George and Joyce Wein Jazz & Heritage Center opens at edge of Treme" />
<meta property="og:description" content="The facility is owned by the New Orleans Jazz & Heritage Foundation" />
<meta property="og:site_name" content="NOLA.com" />
<meta property="og:url" content="http://www.nola.com/jazzfest/index.ssf/2014/12/multi-million-dollar_george_an.html" />
<meta property="og:type" content="article" />
<meta property="og:image" content="http://imgick.nola.com/home/nola-media/width620/img/tpphotos/photo/2014/12/11/16547879-large.jpg" />
<meta property="og:image" content="http://media.nola.com/tpphotos/photo/2014/12/11/16547879-small.jpg" />
<meta property="og:image" content="http://media.nola.com/design/alpha/img/logo_nola.gif" />
<script type="text/javascript" src="//tags.tiqcdn.com/utag/advancedigital/lib-common/prod/utag.sync.js"></script>
<!-- // Define an image media item and description for gigya pinterest MT-1770 -->
<script type="text/javascript">
var image = {
type: 'image',
src: 'http://media.nola.com/tpphotos/photo/2014/12/11/16547879-small.jpg',
href: 'http://www.nola.com/jazzfest/index.ssf/2014/12/multi-million-dollar_george_an.html'
}
var desc = 'The facility is owned by the New Orleans Jazz & Heritage Foundation';
</script>
<script type="text/javascript">
window.LF_META = {
"environment": "production",
"networkId": "advancedigital.fyre.co",
"siteId": "352338",
"articleId": "06a862afd5d7ea359ec31a6541c88df8",
"checksum": "2cd5ffe445c9b41d45dae34269cbe65e",
"collectionMeta": "eyJhbGciOiJIUzI1NiJ9.eyJjaGVja3N1bSI6IjJjZDVmZmU0NDVjOWI0MWQ0NWRhZTM0MjY5Y2JlNjVlIiwiYXJ0aWNsZUlkIjoiMDZhODYyYWZkNWQ3ZWEzNTllYzMxYTY1NDFjODhkZjgiLCJ1cmwiOiJodHRwOi8vd3d3Lm5vbGEuY29tL2phenpmZXN0L2luZGV4LnNzZi8yMDE0LzEyL211bHRpLW1pbGxpb24tZG9sbGFyX2dlb3JnZV9hbi5odG1sIiwidGl0bGUiOiJNdWx0aW1pbGxpb24tZG9sbGFyIEdlb3JnZSBhbmQgSm95Y2UgV2VpbiBKYXp6ICYgSGVyaXRhZ2UgQ2VudGVyIG9wZW5zIGF0IGVkZ2Ugb2YgVHJlbWUiLCJ0YWdzIjoiZXhwZXJ0LGFydHMsZW50ZXJ0YWlubWVudCxmZXN0aXZhbHMsZ2VvcmdlIHdlaW4saG9tZXBhZ2UsbXVzaWMsbmV3IG9ybGVhbnMgamF6eiBmZXN0IDIwMTUsbm9sYS1lbnQscXVpbnQgZGF2aXMifQ.AneRn_T85p9rxAVGZQ1ZJgk2KYYM7Dbe7AzE6ZvxATg",
"readOnly": "false",
"articleAuthorID": "1467"
};
</script>
<script type="text/javascript">
var rtb_comments_readonly = false;
</script>
<link rel="alternate" type="application/atom+xml" title="New Orleans Jazz Fest" href="http://www.nola.com/jazzfest/index.ssf//atom.xml" />
<script type="text/javascript" src="http://blog.nola.com/jazzfest_impact/js/mt.js"></script>
<link rel="stylesheet" href="http://media.nola.com/design/alpha/css/nocommentbox.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta property="fb:admins" content="100000302287435" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/static/aff/static/css/article_res.css" />
<script type="text/javascript" src="/static/common/js/libs/modernizr-2.6.2.min.js"></script>
<script type="text/javascript" src="/static/common/js/adv-js-loader.js"></script>
<script type="text/javascript">
AdvAsyncLoader.require('//fonts.advance.net/lfc4zjg.js', function(){try { Typekit.load({kitId:'lfc4zjg'}); } catch (e) {}});
</script>
<script type="text/javascript" src="http://media.nola.com/static/common/js/jquery/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="http://media.nola.com/static/common/js/plugins.js"></script>
<script type="text/javascript">
$(function() {
if (document.documentElement.clientWidth < 600) {
$("div.nomobilead").remove();
}
if (document.documentElement.clientWidth >= 600) {
$("div.nofullad").remove();
}
$("img.lazy").lazyload();
});
</script>
<script type="text/javascript" src="http://media.nola.com/static/common/js/ads/ads.js"></script>
<script type="text/javascript" src="http://m.burt.io/n/nola-com.js"></script>
<script type="text/javascript" src="http://media.nola.com/static/common/js/burt/adv_burt_nola.js"></script>
<script type="text/javascript" src="http://media.nola.com/design/alpha/js/movabletype.min.1.js"></script>
<script type="text/javascript" src="http://media.nola.com/static/common/js/adv_common.1.js"></script>
<!-- ZipList -->
<script type="text/javascript" src="http://media.nola.com/design/alpha/js/adv-ziplist.1.js"></script>
<link rel="stylesheet" type="text/css" href="http://media.nola.com/design/alpha/css/adv-ziplist.css" />
<script type="text/javascript">
$(document).ready(function() {
var conversionList = [ {"author":"Parade","url":"http://www.parade.com/food/?utm_medium=syndication&utm_campaign=advancefood1"} , {"author":"Dash Recipes","url":"http://www.parade.com/dash-recipes/"} , {"author":"SkinnyChef","url":"http://www.skinnychef.com"} , {"author":"Epicurious.com ","url":"http://www.epicurious.com"} , {"author":"Jennifer Iserloh, Skinny Chef","url":"http://skinnychef.com/about-jennifer-iserloh"}];
$('#Byline .bl').each(function() {
var $textVal = $(this).text()
for (var i=0; i < conversionList.length; i++) {
if ($textVal.indexOf(conversionList[i].author) > 0) {
$(this).prop('href',conversionList[i].url);
}
}
});
$('#Byline .Avatar').each(function() {
var $altValue = $(this).prop('alt');
for (var i=0; i < conversionList.length; i++) {
if ( $altValue == conversionList[i].author ) {
$(this).parent().prop('href',conversionList[i].url);
}
}
});
});
</script>
<style type="text/css">#ziplist_container { display: none }</style>
<script type="text/javascript" src="/static/common/js/adv_gigya.js"></script>
<script type="text/javascript" >
/* <![CDATA[ */
m_context = "blog_entry";
m_blog_type = "text";
m_blog_id = "2720";
m_blog_name = "New Orleans Jazz Fest";
m_blog_url = "http://www.nola.com/jazzfest/index.ssf/";
m_blog_newspaper = "The Times-Picayune";
m_entry_title = "Multimillion-dollar George and Joyce Wein Jazz & Heritage Center opens at edge of Treme";
m_entry_categories = "";
m_entry_author_name = "Keith Spera, NOLA.com | The Times-Picayune";
m_entry_author_username = "kspera";
m_entry_author_public_email = "kspera@nola.com";
m_entry_basename = "multi-million-dollar_george_an";
m_entry_link = "http://www.nola.com/jazzfest/index.ssf/2014/12/multi-million-dollar_george_an.html";
m_entry_tags = "arts;entertainment;festivals;george wein;homepage;music;new orleans jazz fest 2015;nola-ent;quint davis";
m_entry_keywords = "";
m_entry_id = "14729887";
/* ]]> */
</script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<!-- start ads_header.html -->
<!-- stop ads_header.html -->
<link type="text/css" rel="stylesheet" href="/static/common/js/galleria/adv_galleria.css"/>
<link href="/static/common/js/galleria/jquery.mCustomScrollbar.css" rel="stylesheet" type="text/css" />
<meta name="Description" content="The facility is owned by the New Orleans Jazz & Heritage Foundation" />
<link rel="author" href="https://plus.google.com/u/0/111935345939652919813" title="Keith Spera, NOLA.com | The Times-Picayune on Google+" />
<script type="text/javascript" src="http://media.nola.com/static/common/js/ads/ads.js"></script>
<script type="text/javascript" src="http://m.burt.io/n/nola-com.js"></script>
<script type="text/javascript" src="http://media.nola.com/static/common/js/burt/adv_burt_nola.js"></script>
</head>
<body>
<script type="text/javascript">
(function(a,b,c,d){
a='//tags.tiqcdn.com/utag/advancedigital/nola/prod/utag.js';
b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true;
a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a);
})();
</script>
<div id="FB_HiddenContainer" style="position: absolute; top: -10000px; left: -10000px; width: 0px; height: 0px;"></div>
<!-- Start Masthead -->
<!-- ./templates/global/shared/nav/masthead.mtml start -->
<!-- start toprail -->
<!-- toprail -->
<section id="adv_network">
<div class="advWrapper">
<div class="Popup"><div class="Popup adunit nomobilead" id="Popup"></div></div>
<div class="adunit nomobilead" id="Leaderboard"></div>
<div id="Tile1" class="Tile1 adunit nofullad"></div>
</div>
</section>
<header id="adv_header">
<div id="adv_masthead">
<div id="adv_header_logo">
<div id="adv_logo">
<a id="adv_aff_link" href="http://www.nola.com/" title="NOLA.com"><span class="ir">NOLA.com</span></a>
<div id="adv_header_text">
<h3 data-state="7" class="advEdition">
<span id="advEditionLogo" class="ir">The Times-Picayune</span>
<span>Greater New Orleans</span>
</h3>
</div>
<div id="adv_edition_dropdown" class="advDropdown advLayer">
<div class="advPanelArrow"></div>
<div class="advDropdownOuter">
<div class="advDropdownInner">
<ul id="adv_edition_menu" class="advMenuSecondary advMenuSub advMenu">
<li data-value="baton-rouge" data-state="7">Baton Rouge</li>
<li data-value="louisiana" data-state="7">Greater New Orleans</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="adv_mast_left">
<nav id="adv_menu" class="advToprailBtn" data-state="1">
<span class="advToprailIcon"></span>
<span class="advMenuText">Menu</span>
</nav>
<div id="adv_menu_dropdown" class="advDropdown advLayer">
<div class="advPanelArrow"></div>
<div class="advDropdownOuter">
<div id="adv_menu_container">
<div class="advDropdownInner">
<ul id="adv_menu_top" class="advMenu">
<li><a href="http://www.nola.com/">Home</a></li>
<li id="adv_menu_select_edition" data-state="2" data-key="edition">
<span class="advHelperText">Set Your Edition</span>
<span class="nolink">Greater New Orleans</span><span class="next" data-state="2" data-key="edition"></span>
</li>
<li id="adv_mobi_weather" data-state="4">
<div class="advWeatherInner">
<span class="advGeoChoosen"></span>
<span class="advConditions">
<span class="advTemp"></span>
</span>
</div>
<span class="next"></span>
</li>
</ul>
<ul id="adv_menu_main" class="advMenu">
<li><a href="http://www.nola.com/news/">News Home</a><span class="next" data-state="2" data-key="4042"></span></li><li><a href="http://www.nola.com/business/">Business Home</a><span class="next" data-state="2" data-key="4035"></span></li><li><a href="http://www.nola.com/sports/">Sports Home</a><span class="next" data-state="2" data-key="4002"></span></li><li><a href="http://www.nola.com/hssports/">High School Sports</a><span class="next" data-state="2" data-key="hssports"></span></li><li><a href="http://www.nola.com/entertainment/">Entertainment Home</a><span class="next" data-state="2" data-key="4006"></span></li><li><a href="http://www.nola.com/eat-drink/">Eat, Drink, Cook</a><span class="none" data-state="2" data-key="4081"></span></li><li><a href="http://www.nola.com/interact/">Participate</a><span class="next" data-state="2" data-key="4049"></span></li><li><a href="http://obits.nola.com/obituaries/nola/">Obits</a><span class="none" data-state="2" data-key="6349"></span></li><li><a href="http://www.nola.com/jobs/">Jobs</a><span class="none" data-state="2" data-key="6348"></span></li><li><a href="http://autos.nola.com/">Autos</a><span class="none" data-state="2" data-key="4009"></span></li><li><a href="http://realestate.nola.com/">Real Estate</a><span class="none" data-state="2" data-key="4010"></span></li><li><a href="http://realestate.nola.com/for-rent/">Rentals</a><span class="none" data-state="2" data-key="6417"></span></li><li><a href="http://classifieds.nola.com/">Classifieds</a><span class="none" data-state="2" data-key="4011"></span></li><li><a href="http://findnsave.nola.com/?ac=AFFnolaFSNAVFLS">FIND&SAVE</a><span class="next" data-state="2" data-key="6350"></span></li><li><a href="http://businessfinder.nola.com/">Local Businesses</a><span class="none" data-state="2" data-key="6351"></span></li><li><a href="http://photos.nola.com/tpphotos/">Photos</a><span class="next" data-state="2" data-key="6410"></span></li><li><a href="http://videos.nola.com/times-picayune/">Videos</a><span class="next" data-state="2" data-key="4068"></span></li><li><a href="http://www.nola.com/siteindex/">Site Index</a><span class="none" data-state="2" data-key="4082"></span></li>
<li data-state="2" data-key="follow"><span class="nolink">Follow Us</span>
<span class="next" data-state="2" data-key="follow"></span>
</li>
<li id="adv_li_subscribe" data-state="2" data-key="subscribe"><span class="nolink">Subscribe</span>
<span class="next" data-state="2" data-key="subscribe"></span>
</li>
</ul>
<div class="SiteSponsor nomobilead" id="SiteSponsor"></div>
<ul class="advMenuSub advMenu" data-key="4042"><li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li><li><a href="http://www.nola.com/crime/">Crime & Courts</a></li><li><a href="http://www.nola.com/politics/">Politics</a></li><li><a href="http://www.nola.com/education/">Education</a></li><li><a href="http://www.nola.com/health/">Health & Health Care</a></li><li><a href="http://www.nola.com/environment/">Environment</a></li><li><a href="http://www.nola.com/opinions/">Opinions</a></li><li><a href="http://www.nola.com/traffic/">Traffic, Fires & Accidents</a></li><li><a href="http://www.nola.com/weather/">Weather</a></li><li><a href="http://www.nola.com/hurricanes/">Hurricane Central</a></li><li><a href="http://www.nola.com/science/">Science</a></li><li class="advMenuExpansion" data-state="3" data-sub-key="7172" data-sub-parent="4042"><a href="http://www.nola.com/news/">News by Parish</a><span class="next" data-state="3" data-sub-key="7172" data-sub-parent="4042"></span></li><li><a href="http://www.nola.com/newsflash/">National News</a></li><li><a href="http://photos.nola.com/tpphotos/">Photos</a></li><li><a href="http://www.nola.com/connect/">Contact a News Reporter</a></li></ul><ul class="advMenuSub advMenu" data-key="4035"><li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li><li><a href="http://www.nola.com/realestatetransfers/">Real Estate Transfers</a></li></ul><ul class="advMenuSub advMenu" data-key="4002"><li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li><li class="advMenuExpansion" data-state="3" data-sub-key="4024" data-sub-parent="4002"><a href="http://www.nola.com/saints/">Saints Home</a><span class="next" data-state="3" data-sub-key="4024" data-sub-parent="4002"></span></li><li class="advMenuExpansion" data-state="3" data-sub-key="4027" data-sub-parent="4002"><a href="http://www.nola.com/lsu/">LSU Home</a><span class="next" data-state="3" data-sub-key="4027" data-sub-parent="4002"></span></li><li class="advMenuExpansion" data-state="3" data-sub-key="4025" data-sub-parent="4002"><a href="http://www.nola.com/pelicans/">Pelicans Home</a><span class="next" data-state="3" data-sub-key="4025" data-sub-parent="4002"></span></li><li><a href="http://www.nola.com/recruiting/">Recruiting</a></li><li><a href="http://www.nola.com/tulane/">Tulane</a></li><li><a href="http://www.nola.com/outdoors/">Outdoors</a></li><li><a href="http://www.nola.com/running/">Running</a></li><li><a href="http://www.nola.com/horseracing/">Horse Racing</a></li><li><a href="http://www.nola.com/uno/">UNO</a></li><li><a href="http://www.nola.com/golf/">Golf</a></li><li><a href="http://www.nola.com/zephyrs/">Zephyrs</a></li><li><a href="http://www.nola.com/southern-university/">Southern University</a></li><li><a href="http://www.nola.com/ncaa/">NCAA</a></li><li><a href="http://photos.nola.com/4500/category/sports/index.html">Photos</a></li><li><a href="http://www.nola.com/scoreboards/">Scoreboards</a></li><li><a href="http://www.nola.com/sportsflash/">National News</a></li><li><a href="http://www.nola.com/connect/">Contact a Sports Reporter</a></li></ul><ul class="advMenuSub advMenu" data-key="4006"><li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li><li><a href="http://www.nola.com/events/">Event Calendar</a></li><li><a href="http://www.nola.com/music/">Music</a></li><li class="advMenuExpansion" data-state="3" data-sub-key="4039" data-sub-parent="4006"><a href="http://www.nola.com/festivals/">Louisiana Festivals Home</a><span class="next" data-state="3" data-sub-key="4039" data-sub-parent="4006"></span></li><li><a href="http://www.nola.com/movies/">Movies</a></li><li><a href="http://www.nola.com/tv/">TV</a></li><li><a href="http://photos.nola.com/4500/category/entertainment/index.html">Photos</a></li><li><a href="http://www.nola.com/society/">Parties/Society</a></li><li><a href="http://www.nola.com/celebrities/">Celebs</a></li><li><a href="http://www.nola.com/arts/">Arts/Stage</a></li><li><a href="http://www.nola.com/mardigras/">Mardi Gras</a></li><li class="advMenuExpansion" data-state="3" data-sub-key="7790" data-sub-parent="4006"><a href="http://www.nola.com/living/">Living Home</a><span class="next" data-state="3" data-sub-key="7790" data-sub-parent="4006"></span></li><li><a href="http://www.nola.com/connect/">Contact an Entertainment Reporter</a></li></ul><ul class="advMenuSub advMenu" data-key="4049"><li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li><li class="advMenuExpansion" data-state="3" data-sub-key="7787" data-sub-parent="4049"><a href="http://www.nola.com/connect/">Connect Home</a><span class="next" data-state="3" data-sub-key="7787" data-sub-parent="4049"></span></li><li><a href="http://www.nola.com/photo-contest/">Photo Contests</a></li><li><a href="http://photos.nola.com/photogallery/index.html">Your Photos</a></li><li><a href="http://videos.nola.com/index.html">Your Videos</a></li><li><a href="http://www.nola.com/live/">Live on NOLA</a></li><li><a href="http://www.nola.com/live/">Webcams</a></li><li><a href="http://www.nola.com/forums/">Forums</a></li><li><a href="http://www.nola.com/saints/fans/">Talk Saints</a></li><li><a href="http://www.nola.com/lsu/fans/">Talk LSU</a></li><li><a href="http://www.nola.com/pelicans/fans/">Talk Pelicans</a></li><li><a href="http://www.nola.com/eat-drink/community/">Talk Food & Dining</a></li><li><a href="http://www.nola.com/outdoors/fans/">Talk Outdoors</a></li><li><a href="http://www.nola.com/contests/">Contests</a></li></ul><ul class="advMenuSub advMenu" data-key="6350"><li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li><li><a href="http://findnsave.nola.com/Local-Ads/c-8239/Grocery">Local Grocery Ads</a></li><li><a href="http://shop.nola.com/SS/Tiles.aspx?ex=magazinestreetmerchantassoc">Special Sections</a></li><li><a href="http://findnsave.nola.com/Local-Ads">Local Ads</a></li><li><a href="http://findnsave.nola.com/Local-Ads/c-8096/Lagniappe">Lagniappe</a></li></ul><ul class="advMenuSub advMenu" data-key="6410"><li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li><li><a href="http://photos.nola.com/4500/category/news/index.html">News Photos</a></li><li><a href="http://photos.nola.com/4500/category/sports/index.html">Sports Photos</a></li><li><a href="http://photos.nola.com/4500/category/entertainment/index.html">Entertainment Photos</a></li><li><a href="http://photos.nola.com/tpphotos/index.html">Featured Galleries</a></li><li><a href="http://photos.nola.com/photogallery/index.html">Your Photos</a></li><li><a href="http://www.nola.com/connect/">Contact a Photographer</a></li></ul><ul class="advMenuSub advMenu" data-key="4068"><li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li><li><a href="http://videos.nola.com/times-picayune/index.html?category=News">News Video</a></li><li><a href="http://videos.nola.com/times-picayune/index.html?category=Sports">Sports Video</a></li><li><a href="http://videos.nola.com/times-picayune/index.html?category=Entertainment">Entertainment Video</a></li><li><a href="http://videos.nola.com/times-picayune/index.html">Popular Videos</a></li><li><a href="http://videos.nola.com/">Your Videos</a></li><li><a href="http://www.nola.com/connect/">Contact a Photographer</a></li></ul>
<ul class="advMenuSub advMenu" data-key="hssports" data-sub-key="hssports">
<li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li>
<li><a href="http://highschoolsports.nola.com/">High School Sports Home</a></li>
<li><a href="http://highschoolsports.nola.com/football/">Football</a></li>
<li><a href="http://highschoolsports.nola.com/boysbasketball/">Boys Basketball</a></li>
<li><a href="http://highschoolsports.nola.com/girlsbasketball/">Girls Basketball</a></li>
<li><a href="http://highschoolsports.nola.com/wrestling/">Wrestling</a></li>
<li><a href="http://highschoolsports.nola.com/boyssoccer/">Boys Soccer</a></li>
<li><a href="http://highschoolsports.nola.com/girlssoccer/">Girls Soccer</a></li>
<li><a href="http://highschoolsports.nola.com/boyswintertrack/">Boys Winter Track</a></li>
<li><a href="http://highschoolsports.nola.com/girlswintertrack/">Girls Winter Track</a></li>
<li><a href="http://highschoolsports.nola.com/boysweightlifting/">Boys Weightlifting</a></li>
<li class="advMenuExpansion" data-state="3" data-sub-key="hssports">
<span class="nolink">Off Season Sports</span>
<span class="next" data-state="3" data-sub-key="hssports"></span>
</li>
</ul>
<ul class="advMenuSub advMenu advMenuSub2" data-sub-key="hssports">
<li class="advMainMenuLink" data-state="3" data-sub-key="hssports"><div class="prev"></div>Back to High School Sports Menu</li>
<li><a href="http://highschoolsports.nola.com/baseball/">Baseball</a></li>
<li><a href="http://highschoolsports.nola.com/softball/">Softball</a></li>
<li><a href="http://highschoolsports.nola.com/girlsvolleyball/">Girls Volleyball</a></li>
<li><a href="http://highschoolsports.nola.com/boystrackandfield/">Boys Track and Field</a></li>
<li><a href="http://highschoolsports.nola.com/girlstrackandfield/">Girls Track and Field</a></li>
<li><a href="http://highschoolsports.nola.com/boyscrosscountry/">Boys Cross Country</a></li>
<li><a href="http://highschoolsports.nola.com/girlscrosscountry/">Girls Cross Country</a></li>
<li><a href="http://highschoolsports.nola.com/boysgolf/">Boys Golf</a></li>
<li><a href="http://highschoolsports.nola.com/girlsgolf/">Girls Golf</a></li>
<li><a href="http://highschoolsports.nola.com/boystennis/">Boys Tennis</a></li>
<li><a href="http://highschoolsports.nola.com/girlstennis/">Girls Tennis</a></li>
<li><a href="http://highschoolsports.nola.com/boysswimming/">Boys Swimming</a></li>
<li><a href="http://highschoolsports.nola.com/girlsswimming/">Girls Swimming</a></li>
<li><a href="http://highschoolsports.nola.com/girlsweightlifting/">Girls Weightlifting</a></li>
<li><a href="http://highschoolsports.nola.com/boysbowling/">Boys Bowling</a></li>
<li><a href="http://highschoolsports.nola.com/girlsbowling/">Girls Bowling</a></li>
<li><a href="http://highschoolsports.nola.com/boysgymnastics/">Boys Gymnastics</a></li>
<li><a href="http://highschoolsports.nola.com/girlsgymnastics/">Girls Gymnastics</a></li>
</ul>
<ul id="adv_follow_menu" class="advMenuSub advMenu" data-key="follow">
<li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li>
<li class="advMenuSoc" id="adv_follow_fb"><span><a href="http://www.nola.com/connect/facebook/">Visit our Facebook Page</a></span></li>
<li class="advMenuSoc" id="adv_follow_twitter"><span><a href="http://www.nola.com/connect/twitter/">Follow us on Twitter</a></span></li>
<li class="advMenuSoc" id="adv_follow_gplus"><span><a href="https://plus.google.com/105883288752706320720">Visit us on Google Plus</a></span></li>
</ul>
<ul id="adv_subscribe_menu" class="advMenuSub advMenu" data-key="subscribe">
<li class="advMainMenuLink" data-state="2"><div class="prev"></div>Back to Main Menu</li>
<li value="louisiana" data-val="louisiana"><a href="https://notpiservices.dticloud.com/cgi-bin/cmo_cmo.sh/custservice/web/addrfind.html#subscribe_times_picayune">The Times-Picayune</a></li>
<li value="louisiana" data-val="louisiana"><a href="http://www.nola.com/newsletters/">Newsletters</a></li>
<li value="louisiana" data-val="louisiana"><a href="http://www.nola.com/text/">Text Alerts</a></li>
<li value="louisiana" data-val="louisiana"><a href="http://www.nola.com/siteindex/">RSS Feeds</a></li>
<li value="louisiana" data-val="louisiana"><a href="http://www.nola.com/mobile-device/">Mobile Apps</a></li>
</ul>
<ul id="adv_menu_edition" class="advMenuSub advMenu" data-key="edition">
<li data-value="baton-rouge" data-state="7">Baton Rouge</li>
<li data-value="louisiana" data-state="7">Greater New Orleans</li>
</ul>
<div class="SiteSponsor nofullad" id="SiteSponsor"></div>
</div>
</div>
</div>
</div>
<div id="adv_weather" data-state="4" class="">
<div class="advWeatherInner">
<span class="advConditions intermittent-clouds-04">
<span class="advTemp"></span>
</span>
</div>
</div>
<div id="adv_weather_main" class="advDropdown advLayer">
<div class="advPanelArrow"></div>
<div class="advDropdownOuter">
<div class="advDropdownInner">
<div class="advMainMenuLink" data-state="1"><div class="prev"><a href="#"></a></div>Back to Main Menu</div>
<div id="adv_weather_inner">
<div class="advClose" data-state="4"><span class="advToprailIcon ir">Close</span></div>
<form id="adv_wlocation_form">
<div class="title">Customize Your Weather</div>
<div>
<label for="adv_wlocation_input">Set Your Location (Enter City and State or Zip Code)</label>
<div class="errorMsg"></div>
</div>
<div class="advFrmInput"><input name="adv_wlocation_input" id="adv_wlocation_input" type="text" value="" placeholder="Use My Current Location" /></div>
<div class="advFrmBtn"><input type="submit" value="Submit" /></div>
</form>
<div id="adv_wlocation_confirm">
<div class="title">Congratulations!</div>
<div>Your weather is set to <span class="advGeoChoosen"></span>. You can change the location at any time.</div>
<div class="advFrmBtn">
<input class="adv-tray_link" data-state="4" data-phase="phase3" type="button" value="Done" />
</div>
</div>
<div id="adv_weather_data">
<div class="subtitle">AccuWeather.com Quick Look</div>
<div class="title"></div>
<div><a class="advTrayLink" data-state="2" data-phase="phase1">Change your current location »</a></div>
<div class="advWeatherInner"></div>
<div class="advFrmBtn"><a class="advABtn" href="">View Full Weather Report</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="adunit nomobilead" id="SponsorRight"></div>
</div>
<div id="adv_mast_right">
<div id="adv_search" class="advToprailBtn" data-state="6">
<span class="advToprailIcon ir">Search</span>
<span class="advIconLabel">Search</span>
</div>
<div id="adv_search_main">
<div class="advPanelArrow"></div>
<form id="adv_search_form" method="get" action="http://search.nola.com/sp" onsubmit="">
<div id="adv_search_panel">
<div class="advSearchBtn" data-state="6"><input class="advSearchIcon" type="submit" value="Search"/></div>
<div id="adv_search_bar" class="advLayer">
<input class="advTextbox" name="keywords" id="adv_search_input" placeholder="Search" type="text" autocomplete="off" autocorrect="off" autocapitalize="off"/><br/>
</div>
</div>
<div class="advSearchLink">
<h2>Search NOLA.com</h2>
<div class="next"></div>
</div>
</form>
</div>
<div id="adv_account" class="advToprailBtn" data-state="5">
<span class="advToprailIcon ir">Account</span>
<span class="advIconLabel">Sign In</span>
</div>
<div id="adv_user_dropdown" class="advDropdown advLayer">
<div class="advPanelArrow"></div>
<div class="advDropdownOuter">
<div class="advDropdownInner">
<div class="advClose" data-state="5"><span class="advToprailIcon ir">Close</span></div>
<div id="adv_user_main">
<div id="adv_user_signin">
<h2>Sign in to<br/><span>NOLA.com</span></h2>
<div class='advRule'></div>
<form id="adv_signin" name="ToprailSignInForm" method="post" action="https://signup.nola.com/community/" onsubmit="document.getElementById('adv_login_return_url').value=top.document.location.href;return true;">
<input type="hidden" name="__mode" value="do_login"/>
<input type="hidden" name="return_to" id="adv_login_return_url" value=""/>
<input type="hidden" name="affiliate" id="adv-affiliate" value="nola"/>
<input type="hidden" name="v" id="adv-v" value="baseline"/>
<input id="adv_tr_login_author" class='advTextbox' name="username" placeholder="Enter Username" type="text" size="30" autocomplete="off" autocorrect="off" autocapitalize="off"/><br/>
<input id="adv_tr_login_password" class='advTextbox' name="password" placeholder="Enter Password" type="password" size="30"/><br/>
<input type="submit" value="Sign In" />
<div class="advCheckbox">
<input id="adv_signin_checkbox" type="checkbox" name="remember" value="Sign In"/>
<label for="adv_signin_checkbox"><span class="advFormText">Remember me</span></label>
</div>
<input type="hidden" id="adv_tr_error_url" name="error_url" value="https://signup.nola.com/sign-in/">
</form>
<a id="adv_pass_reset" href="https://signup.nola.com/remember/?">Forgot your username and password?</a>
<div class='advRule'></div>
<div class="advSocialLogin">
<div id="adv_signin_services">
<h3>Don't have an account?</h3>
<p><a title="Register now!" id="adv_toprail_register" href="https://signup.nola.com/register/?">Register now for free</a>, or sign in with any of these services:</p>
<span id="adv_signin_links">
<a class="adv-signin-fb" id="AdvTrSdFb" href="https://signup.nola.com/sign-in/?option=Facebook"><img src="http://media.nola.com/static/common/img/buttons/btn-signin-Facebook.png" alt="Facebook"></a>
<a class="adv-signin-google" href="https://signup.nola.com/sign-in/?option=Google"><img src="http://media.nola.com/static/common/img/buttons/btn-signin-Google.png" alt="Google"></a>
<a class="adv-signin-aim" href="https://signup.nola.com/sign-in/?option=AIM"><img src="http://media.nola.com/static/common/img/buttons/btn-signin-AOL.png" alt="AOL"></a>
<a class="adv-signin-twitter" href="https://signup.nola.com/sign-in/?option=Twitter"><img src="http://media.nola.com/static/common/img/buttons/btn-signin-Twitter.png" alt="Twitter"></a>
</span>
</div>
</div>
</div>
<div id="adv_user_snapshot">
<div id="adv_profile_menu">
<img id="adv_profile_img"/>
<div id="adv_profile_nameplate">
<span class="advSignInStatus">You are signed in as</span><br/>
<h2></h2>
</div>
<div id="adv_profile_btns">
<span class="advProfileBtn" id="adv_profile_edit"><a href="" title="Edit your profile">Edit</a></span>
<span class="advProfileBtn" id="adv_profile_view"><a href="" title="View your public profile">Public Profile</a></span>
<span class="advProfileBtn" id="adv_profile_exit"><a href="" title="Sign out">Sign Out</a></span>
</div>
</div>
<div id="adv_user_favs">
<ul>
<li id="user_fav_schools" class="advFavCat"><div data-state="0"><h2>Favorite Schools</h2><span class="advFeedBtn ir">expand</span></div>
<ul class="advFeedSubList"></ul>
</li>
<li id="user_fav_teams" class="advFavCat"><div data-state="0"><h2>Favorite Teams</h2><span class="advFeedBtn ir">close</span></div>
<ul class="advFeedSubList"></ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="adv_subscribe" data-state="9" class="">
<span class="advArrow">Subscribe</span><br/><strong></strong>
</div>
<div id="adv_subscribe_main" class="advDropdown advLayer">
<div class="advPanelArrow"></div>
<div class="advDropdownOuter">
<div class="advDropdownInner">
<ul class="advMenu">
<li value="louisiana" data-val="louisiana"><a href="https://notpiservices.dticloud.com/cgi-bin/cmo_cmo.sh/custservice/web/addrfind.html#subscribe_times_picayune">The Times-Picayune</a></li>
<li value="louisiana" data-val="louisiana"><a href="http://www.nola.com/newsletters/">Newsletters</a></li>
<li value="louisiana" data-val="louisiana"><a href="http://www.nola.com/text/">Text Alerts</a></li>
<li value="louisiana" data-val="louisiana"><a href="http://www.nola.com/siteindex/">RSS Feeds</a></li>
<li value="louisiana" data-val="louisiana"><a href="http://www.nola.com/mobile-device/">Mobile Apps</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- only for edition-based affiliates -->
<div id="adv_mobi_edition">
<h3>Greater New Orleans</h3>
<span data-state="7">Change Region</span>
</div>
<!-- /only for edition-based affiliates -->
</header>
<script type="text/javascript">
function getComscorekwValue() {
var Entertainment = 'Entertainment';
comscorekw=Entertainment;
return Entertainment;
}
function getToprailMenuContext() {
return '';
}
</script>
<!-- /toprail -->
<!-- stop toprail -->
<div class="adunit nomobilead" id="FrameTile2"></div><div class="adunit nomobilead" id="Tower"></div>
<!-- ./templates/global/shared/nav/masthead.mtml end -->
<!-- End Masthead -->
<div role="main" id="main">
<div class="wrapper">
<div id="content">
<div class="hnews">
<div id="article">
<div class="wrapper">
<div class="CommentCount">
<a href="#comments"><span id="echo_comment_count"></span></a>
<div class="label">comments</div>
</div>
<!-- headline - wide -->
<!-- Premium Blog -->
<!-- /Premium Blog -->
<h1>Multimillion-dollar George and Joyce Wein Jazz & Heritage Center opens at edge of Treme</h1>
<div class="clearfix"></div>
<!-- /headline -->
<div id="article_container">
<script type="text/javascript">
m_gallery = "george_and_joyce_wein_jazz_her";
m_gallery_id = "16547816";
m_gallery_total = "12";
m_gallery_blog_id = "4500";
m_gallery_related_slide = "0";
</script>
<div id="multimedia_main_gallery">
<div class="gallery_wrapper">
<input type=button id="btnShare" onclick="javascript:showShareUI('simpleShare')" style="display: none"/>
<div id="galleriaAdOverlay"><div id="galleriaAdCloseLeft"></div><div id="galleriaAdCloseRight"></div></div>
<div id="galleria" >
<div id="preloadGallery"><p>Loading Photo Gallery</p></div>
<div style="display:none">
<span class="resimg" data-position="gallery-photo" data-image="http://media.nola.com/tpphotos/photo/2014/12/11/-cacbb5a9a957f9bf.JPG"
data-big="http://imgick.nola.com/home/nola-media/pgfull/img/tpphotos/photo/2014/12/11/-cacbb5a9a957f9bf.JPG"
data-title="George and Joyce Wein Jazz & Heritage Center"
data-titleurl=""
data-description="Mayor Mitch Landrieu and George Wein man the giant scissors as the New Orleans Jazz & Heritage Foundation cuts the ribbon on its new education and community facility, the George and Joyce Wein Jazz & Heritage Center, on Thursday, December 11, 2014. (Michael DeMocker, Nola.com / The Times-Picayune)"
data-credit="Michael DeMocker, NOLA.com and the Times-Picayune"
data-thumb="http://imgick.nola.com/home/nola-media/pgthumb/img/tpphotos/photo/2014/12/11/-cacbb5a9a957f9bf.JPG"
data-author="mdemocke"
data-author-username="Michael DeMocker, NOLA.com and the Times-Picayune"
data-tags="jazzfest;living;music"
data-keywords=""
data-moderate=""
data-authorlink="http://connect.nola.com/user/mdemocke/photos.html"
data-buy="http://nola.mycapture.com/mycapture/remoteimage.asp?backtext=Return%20to%20the%20photo%20gallery&backurl=http%3A%2F%2Fphotos.nola.com%2Ftpphotos%2F2014%2F12%2Fgeorge_and_joyce_wein_jazz_her_12.html&image=http%3A%2F%2Fmedia.nola.com%2Ftpphotos%2Fphoto%2F2014%2F12%2F11%2F16547879-standard.jpg&pricingsheetid=&caption=%3Cp%3EMayor%20Mitch%20Landrieu%20and%20George%20Wein%20man%20the%20giant%20scissors%20as%20the%20New%20Orleans%20Jazz%20%26%20Heritage%20Foundation%20cuts%20the%20ribbon%20on%20its%20new%20education%20and%20community%20facility%2C%20the%20George%20and%20Joyce%20Wein%20Jazz%20%26%20Heritage%20Center%2C%20on%20Thursday%2C%20December%2011%2C%202014.%20%28Michael%20DeMocker%2C%20Nola.com%20%2F%20The%20Times-Picayune%29%3C%2Fp%3E&affphotographername=Michael%20DeMocker%2C%20NOLA.com%20and%20the%20Times-Picayune" >
</span>
</div>
</div> <!-- /galleria -->
</div> <!-- /gallery_wrapper -->
</div>
<div id="Byline">
<div class="EmailPrint">
<a class="PrintLink" href="http://blog.nola.com/jazzfest_impact/print.html?entry=/2014/12/multi-million-dollar_george_an.html" target="_blank">Print</a>
</div>
<a href="http://connect.nola.com/user/kspera/index.html">
<span class="resimg Avatar" data-image="http://media.nola.com/avatars/1467.png" data-position="byline-avatar">Keith Spera, NOLA.com | The Times-Picayune</span>
</a>
By
<span class="author vcard"><a class="bl" href="http://connect.nola.com/user/kspera/posts.html">
Keith Spera, NOLA.com | The Times-Picayune
</a></span>
<span style="display:none; visibility:hidden;">The Times-Picayune</span>
<br /> <a id="email_author" onclick="emailAuthor()">Email the author</a> | <a href="http://twitter.com/KeithSpera" target="_blank">Follow on Twitter</a>
<br/>on December 11, 2014 at 1:40 PM, updated <span class="updated" title="2014-12-11T20:55:14Z">December 11, 2014 at 2:55 PM</span>
<div id="sponsor_tablet">
<div class="sub-sponsor"></div>
</div>
</div><!-- /Byline -->
<div id="social_top">
</div><!-- /social_top -->
<div id="social_mobile">
<div class="social_simple">
<a href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.nola.com%2Fjazzfest%2Findex.ssf%2F2014%2F12%2Fmulti-million-dollar_george_an.html" target="_blank" class="facebook"></a>
<a href="http://twitter.com/share?url=http%3A%2F%2Fwww.nola.com%2Fjazzfest%2Findex.ssf%2F2014%2F12%2Fmulti-million-dollar_george_an.html" target="_blank" class="twitter"></a>
<a href="mailto:" target="_blank" class="email"></a>
<a href="#comments" class="no_mobile comments_button comments_button_top">View/Post Comments</a>
</div>
</div><!-- /social_mobile -->
<script type="text/javascript">
Advance.Gigya.settings.page = {
'title':'Multimillion-dollar George and Joyce Wein Jazz & Heritage Center opens at edge of Treme',
'link':'http://www.nola.com/jazzfest/index.ssf/2014/12/multi-million-dollar_george_an.html',
'desc': 'The facility is owned by the New Orleans Jazz & Heritage Foundation',
'thumbnail': 'http://imgick.nola.com/home/nola-media/river/img/tpphotos/photo/2014/12/11/16547879-large.jpg'
};
</script>
<div id="article_inset">
<div id="story-package" >
<!-- series -->
<div id="series">
<script type="text/javascript" src="http://media.nola.com/storypackage/13705478/sp.js" /></script>
</div>
<!-- /series -->
<!-- Aka Story Package -->
<!-- gallery-preview -->
<!-- /gallery-preview -->
<!-- Aka Secondary Package -->
<div class="adunit nomobilead" id="StoryAd"></div>
</div><!-- /storypackage -->
</div><!-- /#article_inset -->
<!-- Article -->
<div class="entry-content">
<p>As the founder of the New Orleans Jazz & Heritage Festival, George Wein has already made one major contribution to the continuation of the city's culture. On Thursday morning, he was on hand for the unveiling of another.</p>
<p>The 89-year-old festival impresario attended a ribbon-cutting ceremony Thursday (Dec. 11) for the George and Joyce Wein Jazz & Heritage Center. The new educational and community center at 1225 N. Rampart St. is named for Wein and his late wife and business partner, Joyce. Wein helped cut the ceremonial red ribbon Thursday morning alongside Mayor Mitch Landrieu.</p>
<p>The center is owned by the <a href="http://www.jazzandheritage.org">New Orleans Jazz and Heritage Foundation</a>, the nonprofit organization that owns Jazz Fest. The foundation's longtime offices are next door to the new Jazz & Heritage Center.</p>
<p>"We expect this facility, located at the gateway to the Tremé neighborhood, to give a major boost to the cultural and economic development of not only Tremé, but to our entire city," said Don Marshall, the Jazz & Heritage Foundation's executive director.</p>
<p>In 2008, the foundation bought the former Tharp-Sontheimer-Laudumiey Funeral Home. Two separate townhouses on the site, built in the 1870s, were combined into one Italianate-style building in the early 20<sup>th</sup> century. After acquiring the property, the foundation's board of directors and staff spent several years deciding what to do with it.</p>
<p>Eventually a plan emerged. The space, after an extensive renovation, would become the permanent home for the foundation's Don "Moose" Jamison Heritage School of Music, a free program for young musicians. Since its founding by saxophonist and educator Kidd Jordan in 1990, the Heritage School of Music has been housed on university campuses. Now it will inhabit the seven classrooms and 200-seat performance space -- every space is wired to a central control room for audio and visual recording -- at the George and Joyce Wein Jazz & Heritage Center.</p>
<p>The building also will host cultural programs presented by the Jazz & Heritage Foundation and other arts and community organizations.</p>
<p>Most of the building's original façade was maintained in the renovation, along with the architectural outlines of the older, front part of the building. Much of the 12,500-square-foot structure's rear section, a more recent addition, was rebuilt from the ground up.</p>
<p>The total bill for the project came in at around $9 million. The foundation, which <a href="http://www.nola.com/jazzfest/index.ssf/2014/04/the_2014_new_orleans_jazz_fest.html">generally nets around $3 million from the Jazz and Heritage Festival each spring</a>, self-financed the bulk of the cost.</p>
<p>Around $3 million was donated by various benefactors, including George and Joyce Wein, the Goldring Family Foundation, ArtPlace (a consortium of major national foundations), the Louis Prima and Gia Maione Prima Foundation, the Ella West Freeman Foundation, the Helis Foundation and the State of Louisiana. Other individuals and local and national foundations contributed to the foundation's capital campaign.</p>
<p>Numerous manufacturers of musical instruments donated gear to the center, including Shure (microphones), Yahama (drums), Casio (keyboards), Zildjian (cymbals) and D'Addario (strings).</p>
<p>His sizable donation to the project notwithstanding, Wein and his wife were the obvious choice for namesakes of the new center. Wein was already a well-known jazz club owner when, in the 1950s, he founded the Newport Jazz Festival, the model for all outdoor jazz festivals that would follow.</p>
<p>In the early 1960s, city leaders invited him to consider founding a festival in New Orleans. But several obstacles, including segregation laws that prohibited interracial bandstands, stood in the way.</p>
<p>In the late 1960s, the city staged two versions of the International Jazz Festival without Wein. In 1970, Wein's Festival Productions produced the first New Orleans Jazz & Heritage Festival and Louisiana Heritage Fair in what is now the Congo Square area of Armstrong Park, augmented by evening shows in the Municipal Auditorium. Wein is credited with instigating the festival's early, and ongoing, emphasis on indigenous food and crafts, as well as music. He also hired a Tulane University student named Quint Davis, who is now the festival's producer/director.</p>
<p>"George and Joyce Wein have done so much to benefit our community and our culture," Demetric Mercadel, president of the Jazz & Heritage Foundation's board of directors, said in a statement. "It is only fitting that we recognize their many contributions by having their names grace this wonderful new facility. This is a true testament to their legacy."</p>
<p>Grand-opening festivities continue throughout the weekend.</p>
<p>On Friday (Dec. 12) at 8 p.m., avant-jazz saxophonist and educator Kidd Jordan - who founded the foundation's Don "Moose" Jamison Heritage School of Music in 1990 -- and his accomplished offspring, Kent, Stephanie, Marlon and Rachel Jordan, will headline a grand opening concert; students from the Heritage School of Music will open the show. Admission is free, but all advance tickets are sold out; any remaining seats will be available on a first-come, first-serve basis. The concert will also be live streamed at <a href="http://www.wwoz.org">wwoz.org, the web site</a> of the foundation-owned on WWOZ-FM.
<p>On Saturday (Dec. 13), the center throws open its doors for a Treme Neighborhood and Community Open House. Students from the Heritage School of Music will also perform a free holiday concert on Saturday.</p></p>
</div>
<!-- /Article -->
<div class="box_grayoutline">
<div>
<div class="box_top_left"><!-- --></div><div class="box_top_right"><!-- --></div><div class="box_top"><!-- --></div>
</div>
<div class="box_content">
<div class="clear"><!-- --></div>
<!-- 'BannerShared' begin -->
<div class="adunit nomobilead" id="BannerShared"></div>
<!-- 'BannerShared' end -->
</div>
<div>
<div class="box_bottom_left"><!-- --></div><div class="box_bottom_right"><!-- --></div><div class="box_bottom"><!-- --></div>
</div>
</div>
<div class="Tile5 adunit nofullad" id="Tile5"></div>
<!-- No longer used; Pushed down into parent template -->
<div class="clearfix" ></div>
<div id="social_bottom">
</div>
<div class="social_simple">