-
Notifications
You must be signed in to change notification settings - Fork 0
/
myLA2050play.html
905 lines (737 loc) · 49.3 KB
/
myLA2050play.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title>LA is the best place to play</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en" />
<link rel="stylesheet" media="all" href="assets/reset.self-c24ee0aa1527df85ac03c8d941cc1366e21748a09c41555f3392555f39e1f308.css?body=1" />
<link rel="stylesheet" media="all" href="assets/text.self-39c860465e6a5da40781e13fcf84bb75c7f471d94b6cfe9c29560089d0b181f5.css?body=1" />
<link rel="stylesheet" media="all" href="assets/application.self-d885a0a66bd595c10edb24f8879f94e334d88be0730c4d7c7a7b57c731c09037.css?body=1" />
<!--[if IE 6]>
<link rel="stylesheet" media="all" href="/stylesheets/ie6.css" />
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" media="all" href="/stylesheets/ie7.css" />
<![endif]-->
<!--[if lt IE 9]>
<script src="/javascripts/IE9.js"></script>
<![endif]-->
<!--
<script src="assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1"></script>
<script src="assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1"></script>
<script src="assets/application.self-377610cd7c1509e934744c810e3b4cf672dfbcacac3274e7d039827e2ae0fcc7.js?body=1"></script>
<script src="javascripts/plugins/jquery.scrollto.min.js"></script>
<script src="javascripts/plugins/jquery.autogrow.js"></script>
<script src="javascripts/plugins/jquery.simplemodal.js"></script>
<script src="http://cdn.jquerytools.org/1.2.5/all/jquery.tools.min.js"></script>
<script src="javascripts/compiled/ui_elements.js"></script>
<script src="javascripts/compiled/mixpanel.js"></script>
<script src="javascripts/compiled/comments.js"></script>
<script src="javascripts/vendor/ajaxfileupload/ajaxfileupload.js"></script>
-->
<!-- For custom alert boxes and background color fade in/out -->
<!-- And for jquery ui datepicker -->
<!--
<script src="javascripts/plugins/jquery-ui-1.9.2.custom.min.js"></script>
<link rel="stylesheet" media="screen" href="assets/ui-dialog/jquery-ui-dialog.custom.self-3c9c895313a1b7eb8a344aebe697c558a084668e4499bb77df7b700ee0c4a23d.css?body=1" />
<link rel="stylesheet" media="screen" href="stylesheets/smoothness/jquery-ui-1.9.2.custom.css" />
<link rel="stylesheet" media="screen" href="stylesheets/imgareaselect-animated.css" />
<script src="javascripts/vendor/imgareaselect/jquery.imgareaselect.min.js"></script>
<script type="text/javascript">
$.noConflict();
</script>
-->
<link rel="icon" type="image/png" href="/images/favicon/lime.png" />
<meta property="og:title" content="How would you use $100K to make LA the best place to play?"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="/myLA2050play"/>
<meta property="og:image" content="http://s3.amazonaws.com/stage.assets.maker.good.is/attachments/fund_photos/images/20124/display/LA2050-MAKER-2.jpg?1403008560"/>
<meta property="og:site_name" content="GOOD Maker"/>
<meta property="fb:app_id" content="590727534352624"/>
<meta property="fb:admins" content="100004372031382"/>
<meta property="og:description" content="LA is the best place to play"/>
<link rel="stylesheet" media="screen" href="assets/shared/comments.self-36b95d23810a5ca1a29225df72fefceff3ccea0fac22458d31786147d2c913b2.css?body=1" />
<link rel="stylesheet" media="screen" href="assets/show_challenge.self-df51fd9c6bc3af93c9e7bda279a8da1d7210fcd7a9d89014067b1889c43c48bc.css?body=1" />
<!--<link rel="img_src" href="http://s3.amazonaws.com/stage.assets.maker.good.is/attachments/fund_photos/images/20124/display/LA2050-MAKER-2.jpg?1403008560" />-->
<link rel="stylesheet" media="screen" href="assets/shared/goodmaker.self-a2aceb55fd1ad1119ee0e3cde13ae13152145bffbc64487a7eca173767329f4b.css?body=1" />
<link rel="stylesheet" media="screen" href="assets/shared/menubar.self-c6f399247e564168b1e87cc3598006147e2610b99a1df88849bd36740110f282.css?body=1" />
<link rel="stylesheet" media="screen" href="assets/shared/footer.self-d5c5909d3f1a927d51ca2f6a93e55566ff415acdbe5208d6ced368f0e74b57c2.css?body=1" />
<link rel="stylesheet" media="screen" href="assets/goodmaker_new.self-a0c54ca7154c11a512cc4ec4597f6e3e0eb6c0470daae13eefc1c665698b8bad.css?body=1" />
<script src="assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1"></script>
<script src="assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1"></script>
<script src="assets/application.self-377610cd7c1509e934744c810e3b4cf672dfbcacac3274e7d039827e2ae0fcc7.js?body=1"></script>
<script src="javascripts/vendor/backbone/underscore-min.js"></script>
<script src="javascripts/vendor/backbone/backbone-min.js"></script>
<!-- GA -->
<script type="text/javascript">
function removeRootGACookies() {
var ca = document.cookie.split(';'),
re = /^(__utm.)=/;
for(var i=0; i<ca.length; i++) {
var c = ca[i].trim();
var m = c.match(re)
if (m) {
// Deletes cookies only if they are on root domain, does nothing otherwise
document.cookie = m[1] + "=;path=/;domain=.good.is;expires=Thu, 01 Jan 1970 00:00:01 GMT;"
}
}
}
// Delete GA cookies on .good.is, this code can be removed on 6/1/2016 (GA cookies last 2 years)
removeRootGACookies()
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'doesntmatter']);
_gaq.push(['_setDomainName', '.maker.good.is']);
_gaq.push(['_trackPageview']);
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
</script>
<!-- start Mixpanel -->
<!--
<script type="text/javascript">(function(c,a){window.mixpanel=a;var b,d,h,e;b=c.createElement("script");
b.type="text/javascript";b.async=!0;b.src=("https:"===c.location.protocol?"https:":"http:")+
'//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';d=c.getElementsByTagName("script")[0];
d.parentNode.insertBefore(b,d);a._i=[];a.init=function(b,c,f){function d(a,b){
var c=b.split(".");2==c.length&&(a=a[c[0]],b=c[1]);a[b]=function(){a.push([b].concat(
Array.prototype.slice.call(arguments,0)))}}var g=a;"undefined"!==typeof f?g=a[f]=[]:
f="mixpanel";g.people=g.people||[];h=['disable','track','track_pageview','track_links',
'track_forms','register','register_once','unregister','identify','alias','name_tag','set_config',
'people.set','people.set_once','people.increment','people.track_charge','people.append'];
for(e=0;e<h.length;e++)d(g,h[e]);a._i.push([b,c,f])};a.__SV=1.2;})(document,window.mixpanel||[]);
mixpanel.init("doesntmatter", {cookie_name: "gd_doesntmatter"});
</script>
-->
<!-- end Mixpanel -->
</head>
<body class="normal funds show">
<section class="promotion" style="position: relative; z-index: 1">
<p style="padding: 1.5em; text-align: center; font-size: 1.5em; margin: 0; background: rgb(6, 179, 188); color: white;">
The maker challenge is part of the greater <a href="https://la2050.org/" style="color: inherit; text-decoration: underline; font-weight: 600;">LA2050 initiative</a>.
We’re working to move Los Angeles toward <a href="https://la2050.org/#learnmore" style="color: inherit; text-decoration: underline; font-weight: 600;">five goals</a>.
</p>
</section>
<div id="header-background"></div>
<div id="menu-bar-background"></div>
<div id="global-header">
<div id='menu-bar'>
<div id='good-header'>
<a class="good-logo" href="http://www.good.is"></a>
<div id='slogan'>
<a href="index.html">Go to Maker Home</a>
</div>
</div>
<div id='template-container'>
<div id='template-profile-area'></div>
</div>
</div>
<div class='clear'></div>
<!---->
<div class="clear"></div>
</div>
<div class="container">
<div class="contents">
<div class="left-column">
<div class="header">
<div class="alpha-layer"></div>
<div class="content">
<div class="by"><span class="challange">Challenge </span><span class="by">by </span><span class="person">Goldhirsh Foundation</span></div>
<div class="clear"></div>
<h1 class="challenge-title huge">LA is the best place to play</h1>
<!-- this won't behave, for some reason
<a href="/myLA2050play">LA is the best place to play</a>
-->
</div>
</div>
<script type="text/javascript">
function scrollToComments(){
jQuery.scrollTo("#discussion", 500);
}
</script>
<div class="challenge-body">
<div class="challenge-media" >
<div class="user-media">
<a href="myLA2050play.html"><img alt="How would you use $100K to make LA the best place to play?" src="/s3/maker%252Fattachments%252Ffund_photos%252Fimages%252F20124%252Fdisplay%252FLA2050-MAKER-2.jpg=c570x345#" /></a>
</div>
</div>
<p class="brief">How would you use $100,000 to make LA2050 the best place to play? Submit an application for your chance to make it happen in 2014.</p>
<div class="winner-box phase-action-box">
<a class="action-button winner-button-large" href="myLA2050play/projects/enrichla.html">See Winner</a>
<img src="assets/icons/red-ribbon-small-8d5f3183e8d769eb4cbb497dffcae8ad86f333025c121a32aa0e4c7eb16861d3.png" alt="Red ribbon small 8d5f3183e8d769eb4cbb497dffcae8ad86f333025c121a32aa0e4c7eb16861d3" />
<div class="action-box-text">
<span class="number-ideas">
30 submissions</span> <br>
<a href="myLA2050play/project.myLA2050play.html">
<span class="ideas-link">
Check them out
</span>
</a>
</div>
<br style="clear:both"/>
</div>
<div class="challenge-box-separator"></div>
<div class="clear"></div>
<h2 id="the-specifics">The Specifics</h2>
<div class="copy">
<p><b>We are pleased to announce the two winners who will each receive $100,000 to implement their projects:</b></p>
<p></p><ul>
<li><b> Jury Vote: <a href="http://myla2050play.maker.good.is/projects/KidsplayatPS">Pershing Square Park Advisory Council</a></b></li>
<li><b> Top Voted: <a href="http://myla2050play.maker.good.is/projects/enrichla">EnrichLA</a></b></li>
</ul>
<p>In <a href="http://www.la2050.org">LA2050</a>, our region will be a place where people of all ages have easy access to clean, safe, and sustainable venues to enjoy the natural environment, arts and cultural resources, local beaches, waterways, and open space. </p>
<p>In 2050, people of all ages will enjoy safe homes, safe neighborhoods, and safe places to play. Every neighborhood will provide its residents with vibrant park space, every child will have access to afterschool enrichment programs, and residents will love their neighborhoods. </p>
<p><b>LA2050 Metrics (Shaped by <a href="http://www.la2050.org/goals/">YOU</a>):</b></p>
<ul> Access to open space and park facilities
<li> Number of children enrolled in afterschool programs </li>
<li> Per capita crime rates </li>
<li> Percentage of residents that feel safe in their neighborhoods </li>
<li> Attendance at major league sporting events </li>
<li> Residents within 1⁄4 mile of a park (Dream Metric)</li>
<li> Number of residents with easy access to a “vibrant” park (Dream Metric)</li>
<li> Number of parks with intergenerational play opportunities (Dream Metric)</li>
<li> Number (and quality) of informal spaces for play (Dream Metric)</li>
</ul>
<p>Tell us how <i>your</i> idea, project, or program can help Los Angeles become the best place in the world to play. </p>
<p>Submit an application between Tuesday, July 1st, 2014 (noon Pacific Daylight Time) and Thursday, July 31st, 2014 (noon Pacific Daylight Time). Your application will go through a moderation process to ensure that your project adheres to all challenge rules. From Tuesday, September 2nd, 2014 (noon Pacific Daylight Time) to Tuesday, September 16th, 2014 (noon Pacific Daylight Time), we’ll open challenge submissions to public voting. Rally your colleagues and friends to get behind your effort and join the public in selecting the winners.</p>
<p><b>TWO WAYS TO WIN:</b>
</p><ul>
<li> TOP VOTED: The top voted project will receive $100,000 to implement their idea</li>
<li>JURY VOTED: One project will be selected by a panel of judges to receive $100,000 to implement their idea</li>
</ul>
<p>More details on the challenge and winner rules can be found under Rules & Regulations.</p>
<p>And don’t forget to get your application in early! LA2050 will showcase submissions as they are accepted up until voting begins (between Tuesday, July 1st, 2014 and Friday, August 29th, 2014).</p>
<p>A shared vision for the future of LA is an important first step to making progress. Now, we want to hear your ideas on how we can make that vision a reality.</p>
<p>Connect with LA2050 on <a href="http://www.la2050.org">LA2050.org</a>, <a href="http://www.twitter.com/la2050">Twitter</a>, and <a href="http://www.facebook.com/la2050">Facebook</a> and join the conversation via #LA2050.</p>
<p><b>SUBMISSION TIPS:</b>
</p><ul>
<li>If you don't see your submission here, don't panic! Your application is going through the moderation process, and will show up on the site over the next few days if it is approved.</li>
<li> Share how your idea will impact the LA2050 Goal of making LA the best place to play. How will your project impact the metrics?</li>
<li> Although the <a href="http://www.la2050.org/goals">LA2050 Goals</a> use specific metrics to conduct its tracking and analysis, please do not limit yourself to these metrics.</li>
<li> Describe how the $100,000 award will enable you to implement your idea. </li>
<li> Include a photo or video that represents your idea or organization. Photos should be in JPG, PNG, or GIF format, at least 570 × 345 pixels and no larger than 10MB. To include a video, use a YouTube URL.</li>
<li> Check out the <a href="http://www.la2050.org/goals/">LA2050 Goals</a>, the <a href="http://www.la2050.org/site/assets/files/1454/la2050_report_022513.pdf">LA2050 Report</a>, and the <a href="http://www.la2050.org/site/assets/files/1765/my_la2050_report_final.pdf">My LA2050 White Paper</a> for additional information.</li>
</ul>
<p><b>VOTING TIPS:</b></p>
<ul>
<li> Voting begins on Tuesday, September 2nd, 2014 (noon Pacific Daylight Time) and closes Tuesday, September 16th, (noon Pacific Daylight Time).</li>
<li> Each person can vote once.</li>
<li> In order to vote, you must be at least 18 years old and a US resident. </li>
<li> In order to vote, log in with your GOOD account. </li>
<li> If you don’t have a GOOD account, it’s free to join. All you need is an email address or a Facebook account to register. You will be emailed a link that you need to click in order to validate your address. </li>
<li> We suggest using either Mozilla Firefox or Google 20Chrome browsers when casting a vote.</li>
<li>If you have any questions, please review these <a href="http://support.good.is/categories/20081290-The-My-LA-2050-Challenge">FAQs</a> or send us an email at <a href="mailto:maker@goodinc.com">maker@goodinc.com</a>.</li>
</ul>
<p><b>SELECTION PROCESS:</b></p>
<ul>
<li> Winners will be selected in two ways, a jury vote and public vote:</li>
<li> Jury Vote: One project will be selected by a panel of judges to receive $100,000 to implement their idea. </li>
<li> Applications will be selected using the following criteria: impact on the LA2050 goal, creativity and innovation, feasibility, and collaborative spirit.</li>
<li> Public Vote: The top voted project will receive $100,000 to implement their idea.</li>
<li> Projects will be featured on this page and public voting will be open from Tuesday, September 2nd, (noon Pacific Daylight Time) to Tuesday, September 16th (noon Pacific Daylight Time). </li>
</ul>
</div>
<h2 id="rules-regulations">Rules & Regulations</h2>
<div class="copy">
<ul>
<li> This Challenge is open for submissions from Tuesday, July 1st, 2014 (noon Pacific Daylight Time) to Thursday, July 31st, 2014 (noon Pacific Daylight Time). </li>
<li> US-based non-profit and for-profit organizations with projects serving Los Angeles County are eligible to apply. </li>
<li> Funds for the project must be spent by the Fall of 2015.</li>
<li> Submitted projects must serve a location in Los Angeles County. </li>
<li> Winners will be selected in two ways, a jury vote and public vote: </li>
<li>Jury Vote: One project will be selected by a panel of judges to receive $100,000 to implement their idea. Applications will be selected using the following criteria: impact on the LA2050 goal, creativity and innovation, feasibility, and collaborative spirit.</li>
<li> Public Vote: The top voted project will receive $100,000 to implement their idea.</li>
<li> Ongoing projects are eligible for submission.</li>
<li> Projects will be featured on this page and public voting will be open from Tuesday, September 2nd, 2014 (noon Pacific Daylight Time) and closes Tuesday, September 16th, 2014 (noon Pacific Daylight Time). </li>
<li> In order to vote, log in with your GOOD account. If you don’t have a GOOD account, it’s free to join. All you need is an email address or a Facebook account to register. You will be emailed a link that you need to click in order to validate your address. </li>
<li> All winners of the My LA2050 Challenge will be grantees of the Goldhirsh Foundation and will be required to participate in at least one check-in with a Goldhirsh Foundation team member per month. </li>
<li> Read all the <a href="http://rules-maker.good.is/2014MyLA2050.pdf">rules</a>.</li>
</ul>
</div>
<h2 id="discussion" name="discussion">
<div style="float:left;">Discussion</div>
<span class="comment-count" style="margin-top:3px">
15
<img src="assets/icons/pink-talk-bubble-tail-c96b4a07ef1417e25d0bcf5c4cba4766b8bbf0382f07677990a9d5577885d4d7.png" alt="Pink talk bubble tail c96b4a07ef1417e25d0bcf5c4cba4766b8bbf0382f07677990a9d5577885d4d7" />
</span>
<div class="clear"></div>
</h2>
<div class="clear"></div>
<div class="comments">
<div class="comment" style="padding-left:0px;">
<div class="content"><p>Congratulations to Enrich LA and the Pershing Square Park Advisory Council from Shane's Inspiration! Your work will have an important impact on our community and we wish you great success as your projects come to fruition! Tiffany Harris - CEO/Co-Founder - Shane's Inspiration</p></div>
<div class="by"><span class="by">by </span><span class="person">THarris</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_33553" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="wO32FAwUvbDpN1ixyBatb1bQ7yFnynyzRY8lKurBPe/dQZ7HKBpOHYMldOK57+SATIfbTSvtC7N0RUIH6t2Mag==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="33553" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>Allowing the community to get involved is a must for projects like this. </p></div>
<div class="by"><span class="by">by </span><span class="person">teach4fun</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_31929" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="m9R9yzZleOE0hC84ZI6jY/jIWTkcn9SCYZ/619emGUiGeBUYEmuLTF6WA2sVd+qM4p9tVVC4o4JQVZ3617qozQ==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="31929" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>Our Goal is to work towards cleaner air at and near the Port environment.
<br />This can be achieved in a one year pilot program as follows:
<br />1. Identify the existing base line data information regarding present air quality for comparison every three month period for a one year duration.
<br />2. Identify and report user compliance of existing regulations now in place at both port facilities. This would entail a knowledgeable Quality Assurance Inspection team to report both compliance and non-compliance within specified boundaries within the Port. the underlying assumption is that rules are in place however compliance with such rules is judged to be voluntary with minimal confirmation compliance is being followed.
<br />3. Establishment of a committee of 5 comprised of only experienced engine mechanics/engineers to meet every 3 months to review and comment upon existing conditions and to provide their considered recommendations to improve emissions to facilitate air quality control.
<br />4. At the end of a 12 month period generate a report of findings for the review and consideration of Port Tech.
<br />3. </p></div>
<div class="by"><span class="by">by </span><span class="person">Thomas1000</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_31698" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="fI4hwOVPtl3M+ZYzjaxSpzCAk6We0AIAZ4Va3EiB7jNhIkkTwUFF8KbrumD8VRtIKtenydL3dQBWTz3xSJ1ftg==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="31698" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>We need our parks to be more like the Venice Beach model. They need to have similar activities like weight lifting, bicycle paths, skateboarding with skate parks, handball courts, ect. Our parks need benches and barbaque's. Parks should have more athetlic attivies and more places for families to sit and have a place to enjoy. </p>
<p>Too many parks have become soccer fields. That has kicked many families out of the parks. There is no place for families to go. Parks need to be more for all types of different events that include families. And, parks should include lots of different athletic activies, not just soccer fields. </p></div>
<div class="by"><span class="by">by </span><span class="person">car253</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_31301" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="TTXiGBH9nyf0DSzJJ3fqhwmGGgC2KoV8RNC8qtR1Q4ZQmYrLNfNsip4fAJpWjqNoE9EubPoN8nx1GtuH1GnyAw==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="31301" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>This project is a model pilot project which can involve quality participation in targeted neighborhoods and work in collaboration with the Sheriff's dept, the probation dept. local schools, nonprofits, faith-based organizations and city and county depts., such as the DPSS, to improve the input of citizens in not only arts programs, but in health, education and all other community capacity building projects. Once the creative input of citizens is tapped, trust and participation in local government will flourish and replicate through parks and communities throughout Los Angeles county. Lori, what a mindful, creative way to restore trust and creative input for all. </p></div>
<div class="by"><span class="by">by </span><span class="person">lynncrandall</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_31090" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="2igYR4ECs0c2sFGKeeAq5k16uBvdB4y1gxWe6FbhfPDHhHCUpQxA6lyifdkIGWMJVy2Md5Eg+7Wy3/nFVv3NdQ==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="31090" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>Shane's Inspiration is the driving force behind social inclusion for kids with disabilities, not only throughout Los Angeles, but across the US and many countries. Its name alone is synonymous with inclusive playgrounds and educational and community outreach programs. And all of it – serves to advance a bias-free world for kids of every ability, who will be future parents and leaders. It's truly life changing for not only kids with disabilities, but able-bodied kids who are playing next to them, and with them, in the most aw-inspiring playground. And some of the amazingly creative play elements actually came from the minds of kids who have played in other Shane’s Inspiration playgrounds. What's not to love about this?!</p></div>
<div class="by"><span class="by">by </span><span class="person">bumpylumpy</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_29400" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="642diXM9VAKRyJbOFkIKxRfxNomofInLqdqyoimEiuf2IfVaVzOnr/vaup1nu0MqDaYC5eRb/suYENWPKZg7Yg==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="29400" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>I would love a safe neighborhood to play at without worry. I have played at a Shane's Inspiration playground and I can say without doubt that I have never before felt so safe, secure, and confident.</p></div>
<div class="by"><span class="by">by </span><span class="person">lhyde1</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_29367" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="OLY5oyFMD7BYVa5nWBsMrFvk02IjKFwZc4YsOwHs6fclGlFwBUL8HTJHgjQp4kVDQbPnDm8PKxlCTEsWAfBYcg==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="29367" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>Yippeee, our application for Arts & Fitness is official! That is GOOD! (See what I did there?) :-)</p></div>
<div class="by"><span class="by">by </span><span class="person">frandeleon</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_29046" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="jUM8TwfAnQVPlux0beq8dCpzeNCA35saxk2BImvrd9yQ71ScI85uqCWEwCccE/WbMCRMvMz47Br3h+YPa/fGWQ==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="29046" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>I just made a submission under the category"PLAY" and I would like to replace the video. Is it still possible to do that?</p>
<p>Thank you!</p></div>
<div class="by"><span class="by">by </span><span class="person">lorishocket</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_28902" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="fuYSF2qAc8lZts7au/sNsg2hAWCrqoa4Vvvif+IbIwhjSnrETo6AZDOk4onKAkRdF/Y1DOeN8bhnMYVS4geSjQ==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="28902" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>Dear Sirs, This is my second attempt to reach your office. We submitted our application for the PLAY category of the LA2050 contest on July 24, 2014 and received a confirmation email back. We've checked your website above twice in the last couple of days and it does not reflect that there are any submissions. Please get in touch with us immediately at pinklady7@earthlink.net or 818-606-6679. Thank you.
<br />Pink Lady, Jackie Goldberg</p></div>
<div class="by"><span class="by">by </span><span class="person">pinklady</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_28903" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="h8rr6vjDFytVSkLXhFpK6K5peK8X3DOzcTcm8KpRVtGaZoM53M3khj9YboT1owMHtD5Mw1v7RLNA/UHdqk3nVA==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="28903" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:0px;">
<div class="content"><p>Our organization, Senior Star Power, submitted for the PLAY category last week and it is still showing 0 submissions. Did we do something wrong? Please advise.
<br />Thank you.
<br />Pink Lady, Jackie Goldberg pinklady7@earthlink.net
</p></div>
<div class="by"><span class="by">by </span><span class="person">pinklady</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_28900" style="display:none;;margin-left:0px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="NAFoljfssp7QXovjF3XghGcInpxf58l51NrTshJ9Pu4prQBFE+JBM7pMp7BmjKlrfV+q8BPAvnnlELSfEmGPaw==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="28900" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:20px;">
<div class="content"><p>Apartments should not have been built on Taylor Yard on the LA River. NO MORE DEVELOPMENT ON TAYLOR YARD!! Ex-Councilmember Ed Reyes should not have allowed Apartments to be built on the LA RIVER!! </p>
<p>STOP MORE DEVELOPMENT ON THE LA RIVER AT TAYLOR YARD!!</p></div>
<div class="by"><span class="by">by </span><span class="person">car253</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_31303" style="display:none;;margin-left:20px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="itvwsMA9tTnIl+6+g5vTUFgwXZgWpPNkisjLKs1cS4yXd5hj5DNGlKKFwu3yYpq/Qmdp9FqDhGS7AqwHzUD6CQ==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="31303" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:40px;">
<div class="content"><p>Hi Lori, </p>
<p>Once submissions are entered they are generally no longer editable. If you have an updated video, then I suggest hanging onto it so that you can use it for promotion should your project be approved. Video is a great way to connect with potential supporters and voters!</p>
<p>Thanks!
<br />Lee @ GOOD</p></div>
<div class="by"><span class="by">by </span><span class="person">LFatone</span></div>
<span class="posted-at">over 1 year ago </span>
</div>
<div class="add_comment_form" id="reply_to_28905" style="display:none;;margin-left:40px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="OF3HmCWp7wjjvCLs772bjTJkISxsMHHNTX0/S35TerUl8a9LAaccpYmuDr+eRNJiKDMVQCAXBs18t1hmfk/LMA==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="28905" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:60px;">
<div class="content"><p>Hi Jackie, I'm so sorry that you have been having trouble reaching us! I will get in touch with you today so that we can get this straightened out. In the meantime, please see my comment below that explains why and when submissions become viewable publicly.</p>
<p>Thanks!
<br />Lee @ GOOD</p></div>
<div class="by"><span class="by">by </span><span class="person">LFatone</span></div>
<span class="posted-at">over 1 year ago</span>
</div>
<div class="add_comment_form" id="reply_to_28904" style="display:none;;margin-left:60px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="4R+MToiMYt1onyx5BpnSd/gLcdRkCb1+fjaA2t2Ilm78s+SdrIKRcAKNACp3YJuY4lxFuCguyn5P/Of33ZQn6w==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="28904" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
<div class="comment" style="padding-left:80px;">
<div class="content"><p>Hi Jackie, we did receive your submission! Thanks so much for participating in the My LA2050 Grants Challenge! Submissions are only viewable publicly once they are reviewed and approved. Currently submissions are still being accepted and reviewed, that's why you are not able to see yours yet. If you have any questions about your specific submission you can e-mail us at maker@goodinc.com.</p></div>
<div class="by"><span class="by">by </span><span class="person">LFatone</span></div>
<span class="posted-at">over 1 year ago</span>
</div>
<div class="add_comment_form" id="reply_to_28901" style="display:none;;margin-left:80px;">
<form class="new_comment" id="new_comment" action="myLA2050play.html" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="jlkbj6Un4bWCucge2NyErjFw1jfmDS/9Kukw/cuYVmWT9XNcgSkSGOir5E2pJc1BKyfiW6oqWP0bI1fQy4Tn4A==" />
<input type="hidden" name="parent_comment" id="parent_comment" value="28901" />
<label id="comment-tip" class="comment-tip">Type your comment here...</label>
<textarea class="grid_12 comment_content" name="comment[content]" id="comment_content">
</textarea>
<span class="prompt">You will be prompted to sign in before your comment publishes.</span>
<div class="clear"></div>
</form></div>
<div class="separator"></div>
</div>
<script type="text/javascript">
jQuery(document).ready(function($){
$(".comment_content").bind('focus', function(){
$(this).siblings('label.comment-tip').hide();
});
$(".comment_content").bind('blur', function(){
if ($(this).val().length == 0){
$(this).siblings('label.comment-tip').show();
}
});
$('.reply').bind('click', function(){
$(this).parent().next('.add_comment_form').slideToggle();
});
});
</script>
</div>
<!--
<script>
//<![CDATA[
setMixPanelDetails('maker challenge')
//]]>
</script>
-->
<br style="clear:both">
</div>
<div class="right-column">
<div id="award_box">
<div id="award_icon">
<img src="assets/icons/pink-ribbon-award-box-icon-45b87e779c93f5099a48378c2aadc0fcd51184974daecf76e3f5c50034ea21fb.png" alt="Pink ribbon award box icon 45b87e779c93f5099a48378c2aadc0fcd51184974daecf76e3f5c50034ea21fb" />
</div>
<div id="award_text">
<img src="assets/icons/award_topvotedidea-5a5ae14e3d56a10363ea2a398cece46cf4df891213cbe68677c19d8903a1932a.png" alt="Award topvotedidea 5a5ae14e3d56a10363ea2a398cece46cf4df891213cbe68677c19d8903a1932a" />
</div>
<div id="award_prize_money">
$100,000
</div>
<div class="vertical-padding"></div>
</div>
<div id="challenge_phases">
<div id="submission_phase" class="phase">
<div class="phase-header">
<img class="step-phase" src="assets/icons/circle-1-inactive-e7784182a1bd5eace578987db27fc19ec6337f418c48c6c8732605b9043d50d0.png" alt="Circle 1 inactive e7784182a1bd5eace578987db27fc19ec6337f418c48c6c8732605b9043d50d0" />
<img class="step-title" src="assets/icons/step1-title-submission-inactive-cde083e53089b973e7c9dc80a44a038c1ce4cf3b2650aeb5549157d1ed58a2d9.png" alt="Step1 title submission inactive cde083e53089b973e7c9dc80a44a038c1ce4cf3b2650aeb5549157d1ed58a2d9" />
<div id="step1_plus" class="step-expand" onclick="expandStep1();"><div class="phases-orange-plus"></div></div>
<div id="step1_minus" class="step-expand" onclick="collapseStep1();" style="display:none;"><div class="phases-orange-minus"></div></div>
<div style="clear:both;"></div>
</div>
<div id="submission_phase_detail" class="phase-detail">
<div class="phase-dates deadline">
<p>Submission Began<br>
<span class="upcoming_date_with_day">Tuesday, July 01, 2014</span><br>
<p>Submission Ended<br>
<span class="upcoming_date_with_day">Thursday, July 31, 2014</span><br><span>at 07:00 PM UTC</span></p>
</div>
</div>
</div>
<script language="javascript">
function expandStep1()
{
jQuery("#step1_plus").hide();
jQuery("#step1_minus").show();
jQuery("#submission_phase_detail").show();
}
function collapseStep1()
{
jQuery("#step1_plus").show();
jQuery("#step1_minus").hide();
jQuery("#submission_phase_detail").hide();
}
</script>
<div id="voting_phase" class="phase">
<div class="phase-header">
<img class="step-phase" src="assets/icons/circle-2-inactive-74a43088831beb43fdbd7591ef5d50a5a7a26ff92c9e8ed489782459fa31a8d9.png" alt="Circle 2 inactive 74a43088831beb43fdbd7591ef5d50a5a7a26ff92c9e8ed489782459fa31a8d9" />
<img class="step-title" src="assets/icons/step2-title-voting-inactive-96be722f53c417edddb5742ba9a6dc2fd403f7e4f6c19dbe883d50d20d93689d.png" alt="Step2 title voting inactive 96be722f53c417edddb5742ba9a6dc2fd403f7e4f6c19dbe883d50d20d93689d" />
<div id="step2_plus" class="step-expand" onclick="expandStep2();"><div class="phases-blue-plus"></div></div>
<div id="step2_minus" class="step-expand" onclick="collapseStep2();" style="display:none;"><div class="phases-blue-minus"></div></div>
<div style="clear:both;"></div>
</div>
<div id="voting_phase_detail" class="phase-detail">
<div class="phase-dates deadline">
<p>Voting Began<br>
<span class="upcoming_date_with_day">Tuesday, September 02, 2014</span><br>
<p>Voting Ended<br>
<span class="upcoming_date_with_day">Tuesday, September 16, 2014</span><br><span>at 07:00 PM UTC</span></p>
</div>
</div>
</div>
<script language="javascript">
function expandStep2()
{
jQuery("#step2_plus").hide();
jQuery("#step2_minus").show();
jQuery("#voting_phase_detail").show();
}
function collapseStep2()
{
jQuery("#step2_plus").show();
jQuery("#step2_minus").hide();
jQuery("#voting_phase_detail").hide();
}
</script>
<div id="winner_phase" class="phase">
<div class="phase-header">
<img class="step-phase" src="assets/icons/circle-3-83da7a9432aeea960e1a9e9ee93e7ea1221af6c8f42b27964f2e9999d94b2b8d.png" alt="Circle 3 83da7a9432aeea960e1a9e9ee93e7ea1221af6c8f42b27964f2e9999d94b2b8d" />
<img class="step-title" src="assets/icons/step3-title-3d9e2a65d6ea1ad301f8fc607f5f828bd96362932c71d81c0da5b1fd964422b0.png" alt="Step3 title 3d9e2a65d6ea1ad301f8fc607f5f828bd96362932c71d81c0da5b1fd964422b0" />
<div id="step3_plus" class="step-expand" onclick="expandStep3();"><div class="phases-red-plus"></div></div>
<div id="step3_minus" class="step-expand" onclick="collapseStep3();" style="display:none;"><div class="phases-red-minus"></div></div>
<div style="clear:both;"></div>
</div>
<div id="winner_phase_detail" class="phase-detail">
<div class="winner_contents">
<a href="myLA2050play/projects/enrichla.html"> <div class="user-media">
<img alt="75 School Gardens in Los Angeles Schools!" src="/s3/youtube/vi/3CNwJdOyIDQ/0.jpg=c280x170#" />
</div>
</a>
<div class="title">
<div class="byline">
<span class="idea">winning submission</span>
<span class="by">by</span>
<span class="author">shanaenrichla</span>
</div>
<a href="myLA2050play/projects/enrichla.html">75 School Gardens in Los Angeles Schools!</a>
</div>
</div>
<div class="phase-dates deadline">
<p>Winner Announced<br>
<span class="upcoming_date_with_day">Tuesday, September 30, 2014</span><br>
</div>
</div>
</div>
<script language="javascript">
function expandStep3()
{
jQuery("#step3_plus").hide();
jQuery("#step3_minus").show();
jQuery("#winner_phase_detail").show();
}
function collapseStep3()
{
jQuery("#step3_plus").show();
jQuery("#step3_minus").hide();
jQuery("#winner_phase_detail").hide();
}
expandStep3();
</script>
</div>
</div>
<br style="clear:both">
<div class="ad-footer">
<div class="clear"></div>
</div>
</div>
</div>
<footer id="footer">
<div class="footer-content">
<div class="links">
<h2>Creative Solutions for Living Well + Doing Good.</h2>
<ul>
<li><a href="http://www.good.is/about">About</a></li>
<li><a href="http://www.good.is/about/contact">Contact</a></li>
<li><a href="http://support.good.is/">Support</a></li>
<li><a href="http://www.good.is/about/advertise">Advertise</a></li>
<li><a href="http://good.theresumator.com">Jobs</a></li>
<li><a href="https://subscribe.goodmagazine.com">Subscriptions</a></li>
<li><a href="http://shop.good.is">Online Store</a></li>
<li><a href="http://www.goodcorps.com">GOODcorps</a></li>
<li><a href="http://www.good.is/about/privacy">Privacy</a></li>
<li><a href="http://www.good.is/about/terms">Terms</a></li>
</ul>
</div>
<div class="social">
<h2>Connect with us</h2>
<ul>
<li class="facebook"><a href="http://www.facebook.com/GOODHQ" target="_blank">Facebook</a></li>
<li class="twitter"><a href="http://twitter.com/good" target="_blank">Twitter</a></li>
<li class="instagram"><a href="http://instagram.com/goodhq" target="_blank">Instagram</a></li>
<li class="tumblr"><a href="http://good.tumblr.com/" target="_blank">Tumblr</a></li>
</ul>
</div>
<p class= "legal"> Copyright © 2015 GOOD Worldwide Inc </p>
</div>
</footer>
<script type="text/javascript">
function good_warn( message )
{
jQuery('<div></div>').html( message.replace('.', '.<br>') ).dialog({
dialogClass: "good-alert",
width: 330,
buttons: {
"OK": function() {
jQuery(this).dialog("close");
}
}
});
}
function good_confirm( message, executeFunction )
{
jQuery('<div></div>').html( message ).dialog({
dialogClass: "good-alert",
height: 170,
width: 330,
buttons: {
"Cancel": function() {
jQuery(this).dialog("close");
},
"Yes, I'm sure": function() {
executeFunction();
jQuery(this).dialog("close");
}
}
});
}
</script>
<!-- GA -->
<script type="text/javascript">
jQuery(document).ready(function() {
setCustomVisitorVariable();
});
function setCustomVisitorVariable() {
if (typeof(_gat) == 'object') {
if (typeof(user.attributes["login"]) == 'undefined') {
if (!_gat._getTrackerByName()._getVisitorCustomVar(1)) {
_gaq.push(['_setCustomVar', 1, 'Visitor_Type', 'Visitor', 1]);
}
}
else {
if (_gat._getTrackerByName()._getVisitorCustomVar(1) == 'Visitor') {
_gaq.push(['_setCustomVar', 1, 'Visitor_Type', 'Member', 1]);
}
}
}
}
</script>
</body>
</html>