-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn_design.html
More file actions
1076 lines (906 loc) · 55.1 KB
/
learn_design.html
File metadata and controls
1076 lines (906 loc) · 55.1 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>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<!--
************************************************************************************************
* *
* DDDD EEEEEE SSSS II GGGG NN NN AAA TTTTTTTT II OOO NN NN *
* DDDDDD EE SS SS II GG GG NNN NN AAAAA TT II OO OO NNN NN *
* DD DD EE SS II GG NN N NN AA AA TT II OO OO NN N NN *
* DD DD EEEEE SSS II GG GGGGG NN N NN AA AA TT II OO OO NN N NN *
* DD DD EE SSS II GG GG NN N NN AAAAAAA TT II OO OO NN N NN *
* DDDDDD EE SS SS II GG GG NN NNN AA AA TT II OO OO NN NNN *
* DDDD EEEEEE SSSS II GGGG NN NN AA AA TT II OOO NN NN *
* *
************************************* www.designation.io ***************************************
-->
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<meta charset='UTF-8'>
<title>DESIGNATION: Learn Design</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Become a designer. Learn user experience, web design, and graphic design to build websites, mobile applications, and change careers.">
<meta name="author" content="DESIGNATION Labs">
<meta name="language" content="ES">
<meta name="application-name" content="DESIGNATION">
<meta name="copyright" content="DESIGNATION">
<meta name="url" content="http://designation.io">
<meta name="keywords" content="DESIGNATION, thedesignation,designation IO, designationIO, designation,the designation,Design,UX,User Experience,UI,Visual Design,Branding,Graphic Design,Digital Design,Front-end Development,Front-end Web Development,Frontend,Frontend Dev,Development,HTML,CSS,JavaScript,jQuery,Design school,School,Class,Design class,Digital design school,digital design,tech school,tech class, tech education, interaction design, Digital design class,technology,entrepreneurship,user interface,learn photoshop, learn web design, learn digital design,learn illustrator,learn adobe,designing interactions,layout design,typography,mobile design,responsive design">
<!--Open graph-->
<meta name="og:title" content="DESIGNATION: Design a new career." />
<meta name="og:type" content="website" />
<meta name="og:url" content="http://designation.io" />
<meta name="og:image" content="http://designation.io/img/icons_social/open_graph.png" />
<meta name="og:site_name" content="DESIGNATION: Design a new career."/>
<meta name="fb:page_id" content="388435334586956" />
<meta name="og:email" content="team@designation.io"/>
<meta name="og:region" content="IL"/>
<meta name="og:country-name" content="USA"/>
<meta name="og:description" content="Become a designer. Learn user experience, web design, and graphic design to build websites, mobile applications, and change careers with Chicago's leading web design program.">
<meta property="fb:admins" content="1289433233">
<!-- Twitter cards -->
<meta name="twitter:card" content="DESIGNATION: Design a new career.">
<meta name="twitter:url" content="http://designation.io">
<meta name="twitter:title" content="DESIGNATION: Design a new career.">
<meta name="twitter:description" content="Become a designer. Learn user experience, web design, and graphic design to build websites, mobile applications, and change careers with Chicago's leading web design program.">
<meta name="twitter:image" content="http://designation.io/img/icons_social/open_graph.png">
<!-- CSS
================================================== -->
<link rel="stylesheet" type="text/css" href="css/shared_magic.css">
<link rel="stylesheet" type="text/css" href="css/shared_animate.css">
<link rel="stylesheet" type="text/css" href="css/magnific_popup.css"> <!-- video popup modal -->
<link rel="stylesheet" type="text/css" href="css/shared_designation.css"> <!-- base company styles -->
<link rel="stylesheet" type="text/css" href="css/shared_responsive.css"> <!-- shared media queries -->
<link rel="stylesheet" type="text/css" href="css/learn_design.css"> <!-- this page's stylesheet -->
<link rel="stylesheet" type="text/css" href="css/shared_easybox.css"> <!-- for video styles -->
<link rel="stylesheet" media="only screen and (max-device-width: 1024px)" href="css/ipad/learn_design.css" type="text/css" /> <!-- iPad styling -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="img/favicon/favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="img/favicon/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="114x114" href="img/favicon/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="72x72" href="img/favicon/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="144x144" href="img/favicon/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="60x60" href="img/favicon/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="120x120" href="img/favicon/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="76x76" href="img/favicon/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="152x152" href="img/favicon/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="img/favicon/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="img/favicon/favicon-160x160.png" sizes="160x160" />
<link rel="icon" type="image/png" href="img/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="img/favicon/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="img/favicon/favicon-16x16.png" sizes="16x16" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="msapplication-TileImage" content="img/favicon/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="img/favicon/mstile-70x70.png" />
<meta name="msapplication-square144x144logo" content="img/favicon/mstile-144x144.png" />
<meta name="msapplication-square150x150logo" content="img/favicon/mstile-150x150.png" />
<meta name="msapplication-square310x310logo" content="img/favicon/mstile-310x310.png" />
<meta name="msapplication-wide310x150logo" content="img/favicon/mstile-310x150.png" />
<!-- typekit -->
<script type="text/javascript" src="//use.typekit.net/ezr2vao.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<!-- GOOGLE ANALYTICS -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-38551667-3', 'designation.io');
ga('send', 'pageview');
</script>
<!-- MAILCHIMP GOAL TRACKING -->
<script type="text/javascript">
var $mcGoal = {'settings':{'uuid':'f5c7579668f546f2132350384','dc':'us5'}};
(function() {
var sp = document.createElement('script'); sp.type = 'text/javascript'; sp.async = true; sp.defer = true;
sp.src = ('https:' == document.location.protocol ? 'https://s3.amazonaws.com/downloads.mailchimp.com' : 'http://downloads.mailchimp.com') + '/js/goal.min.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(sp, s);
})();
</script>
</head>
<body>
<!-- NAVIGATION -->
<div class="main_nav_items">
<a href="index" onclick="ga('send', 'event', 'href', 'Home', 'Full white logo header link');"><img class="shown_logo" alt="Designation" src="img/logo/logo_white(585x80).png" onmouseover="hover(this);" onmouseout="unhover(this);" /></a>
<a href="index" onclick="ga('send', 'event', 'href', 'Home', 'White mark logo header link');"><img class="hidden_mark" alt="Designation" src="img/logo/mark_white(200x200).png" onmouseover="hover(this);" onmouseout="unhover(this);" /></a>
<div class="right-side-nav-items">
<a class="active_item" onclick="ga('send', 'event', 'href', 'Learn Design', 'Learn Design main nav link');" href="learn_design">Learn<span class="hide_on_width_squeeze" > Design</span></a>
<a onclick="ga('send', 'event', 'href', 'FAQ', 'FAQ main nav link');" href="faq">FAQ</a>
<a onclick="ga('send', 'event', 'href', 'Hire Talent', 'Hire Talent main nav link');" href="hire_talent">Hire<span class="hide_on_width_squeeze"> Talent</span></a>
<a onclick="ga('send', 'event', 'href', 'About Us', 'About Us main nav link');" href="about_us">About<span class="hide_on_width_squeeze"> Us</span></a>
<a onclick="ga('send', 'event', 'href', 'Blog', 'Blog main nav link');" href="/blog">Blog</a>
<a onclick="ga('send', 'event', 'href', 'Apply', 'Apply main nav blue button');" href="apply"><div style="display: inline-block" class="apply_in_right"><div class="button_blue_solid" style="padding: 5px 20px;"><strong>Apply</strong></div></div></a>
</div>
</div>
<nav>
<div style="height: 50px;"> <!-- main height of nav bar. Remember to change in CSS and JS as well -->
</div>
<div class="temp_nav main_temp_nav" > <!-- height is 40px -->
<a class="stickybar_link1" href="#overview" onclick="ga('send', 'event', 'href', 'Overview anchorlink', 'Overview sub nav 1 anchorlink');">Overview</a>
<a class="stickybar_link2" href="#curriculum" onclick="ga('send', 'event', 'href', 'Curriculum anchorlink', 'Curriculum sub nav 1 anchorlink');">Curriculum</a>
<a class="stickybar_link3" href="#careers" onclick="ga('send', 'event', 'href', 'Careers anchorlink', 'Careers sub nav 1 anchorlink');">Careers</a>
<!-- <a class="stickybar_link4" href="#alumni" onclick="ga('send', 'event', 'href', 'Alumni anchorlink', 'Alumni sub nav 1 anchorlink');">Alumni</a> -->
<!-- <a class="stickybar_link5" href="#tuition" onclick="ga('send', 'event', 'href', 'Tuition anchorlink', 'Tuition sub nav 1 anchorlink');">Tuition</a> -->
<a class="stickybar_link4" href="#tuition" onclick="ga('send', 'event', 'href', 'Tuition anchorlink', 'Tuition sub nav 1 anchorlink');">Tuition</a>
</div>
</nav>
<!-- END NAVIGATION -->
<!-- HERO IMAGE -->
<div id="hero_wrapper" >
<div id="hero_description">
<div class="h1_and_p_wrapper">
<h1 style="font-family: 'Minion Pro', 'minion-pro', serif;" ><i>Learn Design</i></h1>
<p class="white futura">A fully immersive 10 week program in Chicago</p>
<br>
<div class="arrow-container" style="display:inline-block"><a onclick="ga('send', 'event', 'href', 'Learn more arrow anchorlink', 'Bouncing arrow provoking user to scroll down');" href="#overview"><div class="arrow-down"></div></a></div>
</div>
</div>
</div>
<div class="temp_nav display_hidden_soon" > <!-- height is 40px -->
<a href="#overview" onclick="ga('send', 'event', 'href', 'Overview anchorlink', 'Overview sub nav 2 anchorlink');">Overview</a>
<a href="#curriculum" onclick="ga('send', 'event', 'href', 'Curriculum anchorlink', 'Curriculum sub nav 2 anchorlink');">Curriculum</a>
<a href="#careers" onclick="ga('send', 'event', 'href', 'Careers anchorlink', 'Careers sub nav 2 anchorlink');">Careers</a>
<!-- <a href="#alumni" onclick="ga('send', 'event', 'href', 'Alumni anchorlink', 'Alumni sub nav 2 anchorlink');">Alumni</a> -->
<a href="#tuition" onclick="ga('send', 'event', 'href', 'Tuition anchorlink', 'Tuition sub nav 2 anchorlink');">Tuition</a>
</div>
<!-- OVERVIEW DIV -->
<div class="main_div overview" anchor="overview" >
<div class="main_div_columns">
<div class="main_div_column_1_of_3">
<!-- COLUMN 1 CONTENT -->
<div class="img_container_main" >
<img src="img/icons_flat/code.png" alt="UI, UX, & Coding" style="max-height: 248px; max-width: 248px;">
</div>
<!-- /COLUMN 1 CONTENT -->
</div>
<div class="main_div_column_2_of_3">
<!-- COLUMN 2 CONTENT -->
<div class="blue -h4" style="font-weight: bold; text-transform: uppercase; margin-bottom: 1em;" >Overview</div>
<h3 class="futura black" style="font-weight: 400;">A career accelerator for digital designers.</h3><br>
<div class="h black_lighter" style="line-height: 1.45;">
Go back to college if you want a degree. But come to DESIGNATION if you want a new career. Intended for designers of all skill levels, DESIGNATION is a way for people to expand their skill set and start doing something new. Whether it's branching out into front-end web development, understanding fundamental UX/UI principles, or just mastering the essentials of digital design, DESIGNATION is an innovative new approach to education. In 10 weeks, we'll expose you to the full-stack of key design skills in a creative, collaborative, immersive environment.
<br>
<div class="button_containers" style="margin-top: 1.45em" >
<a class="modal_popup" href="https://www.youtube.com/watch?v=Y_JmZt1j5rE" onclick="ga('send', 'event', 'href', 'Watch Video', 'Watch Video blue button in Overview Div');"><div class="button_blue futura"><strong>Watch Video</strong></div></a>
</div>
<br>
</div>
</div>
</div>
</div>
<!-- /OVERVIEW DIV -->
<!-- CURRICULUM DIV -->
<div class="main_div_rev curriculum" anchor="curriculum" >
<div class="main_div_columns_rev">
<!--
<div class="main_div_column_1_of_3_rev">
<div class="img_container" >
</div>
</div>
-->
<div class="blue -h4" style="font-weight: bold; text-transform: uppercase; margin-bottom: 1em;" >Curriculum</div>
<h3 class="white futura">Learn the full stack of design skills.</h3><br>
<div class="h white" style="line-height: 1.45;">
The day of the dedicated specialist is over. To be dangerous in the modern design world, you have to be agile enough to do whatever needs to be done. That’s why we take a heuristic approach, and expose you to the full spectrum of design skills in a program that combines core principles with practical applications. It can get a little intense, so we expect students to devote a minimum of 60 hours a week to the program.
</div>
<div class="main_div_column_2_of_3_rev">
<div class="icons_container">
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/photoshop.png"/ alt="Photoshop">
</div>
<div class="hidden_under_text">Adobe Photoshop</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/illustrator.png"/ alt="Illustrator">
</div>
<div class="hidden_under_text">Adobe Illustrator</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/ux.png"/ alt="UX">
</div>
<div class="hidden_under_text">User Experience</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/touch.png"/ alt="Interactions">
</div>
<div class="hidden_under_text">Interaction Design</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/strategy.png"/ alt="Strategy">
</div>
<div class="hidden_under_text">Design Strategy</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/research.png"/ alt="Research">
</div>
<div class="hidden_under_text">Design Research</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/usability.png"/ alt="Usability">
</div>
<div class="hidden_under_text">Usability</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/visual.png"/ alt="Visual">
</div>
<div class="hidden_under_text">Visual Design</div>
</div> <!-- /Icon #1 -->
<div class="text">
Adobe<br>Photoshop
</div>
<div class="text">
Adobe<br>Illustrator
</div>
<div class="text">
User<br>Experience
</div>
<div class="text">
Interaction<br>Design
</div>
<div class="text">
Design<br>Strategy
</div>
<div class="text">
Design<br>Research
</div>
<div class="text">
Usability<br>
</div>
<div class="text">
Visual<br>Design
</div>
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/typography.png"/ alt="Typography">
</div>
<div class="hidden_under_text">Typography</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/branding.png"/ alt="Branding">
</div>
<div class="hidden_under_text">Branding</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/layout.png" alt="Layout" />
</div>
<div class="hidden_under_text">Layout</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/mobile.png"/ alt="Mobile">
</div>
<div class="hidden_under_text">Mobile Design</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/html.png"/ alt="HTML">
</div>
<div class="hidden_under_text">HTML</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/css.png"/ alt="CSS">
</div>
<div class="hidden_under_text">CSS</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/js.png"/ alt="JavaScript">
</div>
<div class="hidden_under_text">JavaScript and jQuery</div>
</div> <!-- /Icon #1 -->
<!-- Icon #1 -->
<div class="icon_and_text">
<div class="img_container">
<img src="img/icons_curriculum/responsive.png"/ alt="Responsive">
</div>
<div class="hidden_under_text">Responsive Design</div>
</div> <!-- /Icon #1 -->
<div class="text">
Typography
</div>
<div class="text">
Branding
</div>
<div class="text">
Layout
</div>
<div class="text">
Native Mobile Design
</div>
<div class="text">
HTML
</div>
<div class="text">
CSS
</div>
<div class="text">
JavaScript and jQuery
</div>
<div class="text">
Responsive Design
</div>
</div> <!-- /ICON WRAP -->
</div>
</div>
</div>
<!-- /CURRICULUM DIV -->
<!-- CAREERS DIV -->
<div class="main_div_careers careers" anchor="careers">
<div class="main_div_columns_careers">
<div class="main_div_column_1_of_3_careers">
<!-- COLUMN 1 CONTENT -->
<div class="img_container" >
<img src="img/icons_flat/graphics.png" alt="Graphics" style="max-height: 248px; max-width: 248px;">
</div>
<!-- /COLUMN 1 CONTENT -->
</div>
<div class="main_div_column_2_of_3_careers">
<!-- COLUMN 2 CONTENT -->
<div class="blue -h4" style="font-weight: bold; text-transform: uppercase; margin-bottom: 1em;" >Careers</div>
<h3 class="black futura">Get a head start on a new career.</h3><br>
<div class="black_lighter light_text">
The jobs are out there, waiting to be filled. All that’s missing is you. That’s why DESIGNATION provides training for design skills we already know are in high demand. Our program places a strong emphasis on portfolio construction, with the full focus of your time dedicated to creating portfolio-ready pieces. After graduating, we'll help you find a job through our extensive career network of innovative technology companies. And if you do get a full-time gig with one of our Hiring Partners, we'll refund half of your tuition.
<!--
<br><br>
<div style="padding-bottom: 10px">Here are just a few of our Hiring Partners:</div>
<a href="http://spotify.com" target="_blank"><img src="img/hiring_partners/spotify.jpg" style="height: 60px; padding: 0 15px"></a>
<a href="http://amazon.com" target="_blank"><img src="img/hiring_partners/amazon.png" style="height: 35px; padding: 0 15px; bottom: 5px;"></a>
<a href="http://hudl.com" target="_blank"><img src="img/hiring_partners/hudl.png" style="height: 60px; padding: 0 15px"></a>
<a href="http://avantcredit.com" target="_blank"><img src="img/hiring_partners/avant_credit.png" style="height: 15px; padding: 0 15px; bottom: 15px"></a>
<a href="http://yelp.com" target="_blank"><img src="img/hiring_partners/yelp.png" style="height: 60px; padding: 0 15px"></a>
<a href="http://trackbill.com" target="_blank"><img src="img/hiring_partners/trakbill.png" style="height: 60px; padding: 0 15px"></a>
<br><br>
-->
<div class="button_containers" style="margin-top: 1.45em" >
<a href="apply" onclick="ga('send', 'event', 'href', 'Apply', 'Apply Now clear blue button in Careers Div');"><div class="button_blue futura"><strong>Apply Now</strong></div></a>
or
<a href="faq" onclick="ga('send', 'event', 'href', 'FAQ', 'Read the FAQ clear blue button in Careers div');"><div class="button_blue futura"><strong>Read the FAQ</strong></div></a>
</div>
</div>
</div>
</div>
</div>
<div style="clear:both;"></div>
<!-- /CAREERS DIV -->
<NOSCRIPT>
<!-- ALUMNI DIV -->
<div class="main_div_rev alumni" anchor="alumni" >
<div class="main_div_columns_rev">
<!--
<div class="main_div_column_1_of_3_rev">
<div class="img_container" >
<img src="img/icons_flat/code.png">
</div>
</div>
-->
<!-- COLUMN 2 CONTENT -->
<div class="blue -h4" style="font-weight: bold; text-transform: uppercase; margin-bottom: 1em;" >Alumni</div>
<h3 class="white futura">Our students come from all walks of life.</h3><br>
<div class="h white" style="line-height: 1.45;">
Here's what some of our alumni have to say about us:<br><br>
<div style="height: 10px;"></div><!-- /COLUMN 2 CONTENT -->
</div>
<div class="main_div_column_2_of_3_rev">
<div class="alumni_people_container">
<div class="alumni_person">
<div class="alumni_left_side">
<div class="img_container">
<img src="img/carousel/katherine.jpeg" alt="Katherine">
</div>
</div>
<div class="alumni_right_side">
<p class="white" style="font-weight: 400">Katherine Raz</p>
<span class="-h4 white_darker">Fall 2013 Cohort</span>
<p class="testimonial_content -h4 white">“Everything I learned at DESIGNATION is what I'm using at my new job. As a design researcher, I'm much more valuable and useful to my company. Everything I learned in the class really validated what I'm doing now.”</p>
</div>
</div>
<div class="alumni_person">
<div class="alumni_left_side">
<div class="img_container">
<img src="img/carousel/haas.png" alt="Dr. Chad Abed">
</div>
</div>
<div class="alumni_right_side">
<p class="white" style="font-weight: 400" >Dr. Chad Abed</p>
<span class="-h4 white_darker">Summer 2013 Cohort</span>
<p class="testimonial_content -h4 white">“As a practicing doctor, I had little background in design & development. DESIGNATION was very well designed to make starting from scratch very enjoyable. … This course was easily my best spent money this whole year.”</p>
</div>
</div>
<div class="alumni_person">
<div class="alumni_left_side">
<div class="img_container">
<img src="img/carousel/sheila.png" alt="Sheila">
</div>
</div>
<div class="alumni_right_side">
<p class="white" style="font-weight: 400">Sheila Arora</p>
<span class="-h4 white_darker">Summer 2013 Cohort</span>
<p class="testimonial_content -h4 white">“DESIGNATION provided instruction, tools, and resources to help me understand that good design is more than just a pretty logo (I’m an artist, what do you expect). It’s a well thought out process that builds on research and user-experience.”</p>
</div>
</div>
<div style="clear: both; height: 1.45em;"></div>
<div class="alumni_person">
<div class="alumni_left_side">
<div class="img_container">
<img src="img/carousel/lg.png" alt="Laura Grey">
</div>
</div>
<div class="alumni_right_side">
<p class="white" style="font-weight: 400">Laura Grey Humphrey</p>
<span class="-h4 white_darker">Summer 2013 Cohort</span>
<p class="testimonial_content -h4 white">“I had looked at other options and DESIGNATION by far was the most cost effective and time efficient. The size of the class was great. The student to teacher ratio gave all students a chance to learn in their own way.”</p>
</div>
</div>
<div class="alumni_person">
<div class="alumni_left_side">
<div class="img_container">
<img src="img/carousel/amy.jpg" alt="Amy">
</div>
</div>
<div class="alumni_right_side">
<p class="white" style="font-weight: 400">Amy Sherman</p>
<span class="-h4 white_darker">Fall 2013 Cohort</span>
<p class="testimonial_content -h4 white">“DESIGNATION provided us with a valuable overview of different topics within the field of digital design. … I came in with zero design experience and learned a lot about design while having fun.”</p>
</div>
</div>
<div class="alumni_person">
<div class="alumni_left_side">
<div class="img_container">
<img src="img/carousel/daniel.jpg" alt="Daniel">
</div>
</div>
<div class="alumni_right_side">
<p class="white" style="font-weight: 400">Daniel Marushka</p>
<span class="-h4 white_darker">Fall 2013 Cohort</span>
<p class="testimonial_content -h4 white">“DESIGNATION has proven to be an invaluable source of information about modern industry trends. The instructors provided a great wealth of knowledge on all topics we studied in design.”</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /ALUMNI DIV -->
</NOSCRIPT>
<!-- APPLY DIV -->
<div class="subscribe_div learn_more tuition" anchor="tuition">
<div class="blue -h4" style="font-weight: bold; text-transform: uppercase; margin-bottom: 1em;" >Tuition</div>
<h3 class="white futura">Tuition is $2,000.</h3><br>
<div class="h white">
Get refunded $1,000 of your tuition if you take a full-time job with one of our Hiring Partners after completing the program.<!--<br><br>Financing plans available upon request.--><br><br>
<a href="apply" onclick="ga('send', 'event', 'href', 'Apply', 'Big, green Apply Now button in Tuition div');"><div class="button_white-green_solid button_large" style="font-size: 1em; font-family: 'futura-pt','Futura Std','futura',sans-serif !important"><strong>Apply Now</strong></div></a>
</div>
</div>
<!-- /APPLY DIV -->
<!-- SUBSCRIBE DIV -->
<div class="apply_div" style="background: #fcfcfc !important">
<h3 class="minion_pro black">Learn more</h3><br>
<div class="h black_lighter">
Enter your email below to view the complete Program Roadmap.
<form style="margin-top: 1.45em" action="http://thedesignation.us5.list-manage2.com/subscribe/post?u=f5c7579668f546f2132350384&id=a246930c5d" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<input type="email" value="" name="EMAIL" class="email submit_field" id="mce-EMAIL(NULLED_THIS_ID)" placeholder="nyan@cat.com" required style="font-family: 'futura-pt', 'Futura Std', 'futura', sans-serif !important">
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;"><input type="text" name="b_f5c7579668f546f2132350384_a246930c5d" value=""></div>
<input onclick="ga('send', 'event', 'href', 'Subscribe', 'Big, green Subscribe button in Program Roadmap div');" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe(NULLED_THIS_ID)" class="button_subscribe" style="position: relative; font-family: 'futura-pt','Futura Std','futura',sans-serif !important"><br>
<span class="-h4 black_lighter">No spam ever. We promise.</span>
</form>
<br>
</div>
</div>
<!-- /SUBSCRIBE DIV -->
<!-- FOOTER -->
<footer>
<div class="-h4 footer_wrapper">
<div class="footer_col1">
<div class="footer_col1_content">
<span><strong>About Us</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'What We Do', 'What We Do footer link');" class="button_no_underline_white_to_blue" href="about_us#what_we_do">What We Do</a><br>
<a onclick="ga('send', 'event', 'href', 'Team', 'Team footer link');" class="button_no_underline_white_to_blue" href="about_us#team">Team</a><br>
<a onclick="ga('send', 'event', 'href', 'Press', 'Press footer link');" class="button_no_underline_white_to_blue" href="about_us#press">Press</a><br>
<a onclick="ga('send', 'event', 'href', 'Contact Us', 'Contact Us footer link');" class="button_no_underline_white_to_blue" href="about_us#contact_us">Contact Us</a><br>
<br>
<span><strong>Social</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Blog', 'Blog footer link');" class="button_no_underline_white_to_blue" href="/blog">Blog</a><br>
<a onclick="ga('send', 'event', 'href', 'Facebook', 'Facebook footer link');" class="button_no_underline_white_to_blue" href="http://facebook.com/Designation" target="_blank">Facebook</a><br>
<a onclick="ga('send', 'event', 'href', 'Twitter', 'Twitter footer link');" class="button_no_underline_white_to_blue" href="http://twitter.com/designationIO" target="_blank">Twitter</a><br>
<br>
<span><strong>Playground</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Style Guide', 'Style Guide footer link');" class="button_no_underline_white_to_blue" href="/style_guide">Style Guide</a><br>
<a onclick="ga('send', 'event', 'href', 'Dedesigntheweb.com', 'Dedesigntheweb.com footer link');" class="button_no_underline_white_to_blue" href="http://dedesigntheweb.com" target="_blank">Dedesign the Web</a><br>
</div>
</div>
<div class="footer_col2">
<div class="footer_col2_content">
<span><strong>For Students</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Learn Design', 'Learn Design footer link');" class="button_no_underline_white_to_blue" href="learn_design">Learn Design</a><br>
<a onclick="ga('send', 'event', 'href', 'FAQ', 'FAQ footer link');" class="button_no_underline_white_to_blue" href="faq">FAQ</a><br>
<a onclick="ga('send', 'event', 'href', 'Apply', 'Apply footer link');" class="button_no_underline_white_to_blue" href="apply">Apply</a><br>
<br>
<span><strong>For Companies</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Hire Talent', 'Hire Talent footer link');" class="button_no_underline_white_to_blue" href="hire_talent">Hire Talent</a><br>
<a onclick="ga('send', 'event', 'href', 'Become a Client', 'Become a Client footer link');" class="button_no_underline_white_to_blue" href="black">Become a Client</a><br>
<br>
<span><strong>Legal Stuff</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Privacy Policy', 'Privacy Policy footer link');" class="button_no_underline_white_to_blue" href="privacy_policy">Privacy Policy</a><br>
<a onclick="ga('send', 'event', 'href', 'Terms of Service', 'Terms of Service footer link');" class="button_no_underline_white_to_blue" href="terms_of_service">Terms of Service</a><br>
<a onclick="ga('send', 'event', 'href', 'Attributions', 'Attributions footer link');" class="button_no_underline_white_to_blue" href="attributions">Attributions</a><br>
<br>
</div>
</div>
<div class="footer_col3">
<div class="footer_col3_content">
<span><strong>Subscribe</strong></span><br>
Enter your email to keep up with our latest updates.
<!-- Begin MailChimp Signup Form -->
<form action="http://thedesignation.us5.list-manage2.com/subscribe/post?u=f5c7579668f546f2132350384&id=a246930c5d" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate footer_subscribe_form" target="_blank" novalidate>
<input type="email" value="" name="EMAIL" class="email submit_field" id="mce-EMAIL" placeholder="nyan@cat.com" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;"><input type="text" name="b_f5c7579668f546f2132350384_a246930c5d" value=""></div>
<input onclick="ga('send', 'event', 'href', 'Subscribe', 'Small Subscribe blue button in footer');" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="footer_subscribe_button button_blue_solid" >
</form>
<!--End mc_embed_signup-->
<br>
<p style="color: #9e9e9e;">DESIGNATION Labs © 2014</p>
<p style="color: #9e9e9e" class="-h4 konami_directions">Try this: ↑ ↑ ↓ ↓ ← → ← → B A</p>
<!-- twitter share button -->
<a id="twitter_secret" target="_blank" onclick="ga('send', 'event', 'href', 'Share', 'Easter egg sharing on learn_design');" class="button_twitter" href="http://twitter.com/home?status=I found the easter egg. Can you%3F http://designation.io/learn_design%20%23konamicode"><div class="button_green"><img src="img/icons_social/twitter_white_big.png" style="position: relative; top: 7px; height: 20px; padding: 5px; border-radius: 3px; color: #5189B4"><span style="padding:0; margin: 0; top: -2px; position: relative; color: white !important; font-size: 1.2em">CLICK ME!</span></div></a> <!-- /twitter share button -->
<style type="text/css">
#twitter_secret {
opacity: 0;
display: none;
}
</style>
<img id="cities" alt="Chicago" src="img/icons_flat/cities.png" style="position: absolute; bottom: 0; right: 0;">
</div>
</div>
</div>
<div style="clear:both;"></div>
</footer> <!-- /FOOTER -->
<!-- START SCRIPTS -->
<!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>-->
<script type="text/javascript" src="js/jquery-1.7.min.js"></script>
<script type="text/javascript" src="js/waypoints.js"></script>
<script type="text/javascript" src="js/waypoints-sticky.js"></script>
<script type="text/javascript" src="js/jquery.stellar.min.js"></script>
<script type="text/javascript" src="js/ddscrollspy.js"></script>
<!--<script type="text/javascript" src="js/jquery.popup.js"></script>-->
<script type="text/javascript" src="js/easybox.distrib.min.js"></script>
<!--<script type="text/javascript" src="js/jquery.responsImg.js"></script>-->
<script type="text/javascript" src="js/jquery.tinycarousel.min.js"></script>
<script type="text/javascript" src="js/konami_code(learn_design).js"></script>
<script type="text/javascript" src="js/fade_hero.js"></script>
<script type="text/javascript" src="js/fade_nav.js"></script>
<script type="text/javascript" src="js/general.js"></script>
<!-- Magnificent Popup -->
<script type="text/javascript" src="js/magic_popup.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.modal_popup').magnificPopup({
disableOn: 700,
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: false,
fixedContentPos: false
});
});
</script>
<style type="text/css">
.icon_and_text {
-vendor-animation-duration: 1s;
-vendor-animation-delay: 2s;
-webkit-animation-iteration-count: 0;
-moz-animation-iteration-count: 0;
-ms-animation-iteration-count: 0;
-o-animation-iteration-count: 0;
animation-iteration-count: 0;
}
</style>
<!-- CSS3 Animations on scroll: Testiomonials fade in-->
<script>
var hero_wrapper_height = $("#hero_wrapper").outerHeight();
var overview_height = $(".overview").outerHeight();
var curriculum_height = $(".curriculum").outerHeight();
var careers_height = $(".careers").outerHeight();
var alumni_height = $(".alumni").outerHeight();
$('.icon_and_text').css("opacity","0");
$(window).scroll(function() {
$('.icon_and_text').each(function(){
var Pos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (Pos < topOfWindow+hero_wrapper_height + overview_height) {
$(this).addClass("magic fadeIn");
$(this).css("opacity","1");
}
});
});
</script>
<!-- fade in the first bubble in Overview section on scroll -->
<script type="text/javascript">
$(window).scroll(function() {
var scroll = $(window).scrollTop();
$(".overview div .main_div_column_1_of_3 .img_container_main img").css("opacity","0");
if (scroll >= 300) {
$(".overview div .main_div_column_1_of_3 .img_container_main img").css("opacity","1").addClass("animated rollIn").css("display","block");
} else {
}
});
</script>
<!-- fade in the curriculum bubbles (images) in Curriculum section on scroll -->
<script type="text/javascript">
$(window).scroll(function() {
var scroll = $(window).scrollTop();
$(".icons_container .icon_and_text .img_container:nth-child(1)").css("opacity","0");
if (scroll >= 300 + 90 + overview_height) {
$(".icons_container .icon_and_text .img_container:nth-child(1)").css("opacity","1").addClass("animated fadeIn");
}
});
</script>
<!-- fade in the curriculum bubbles (text) in Curriculum section on scroll -->
<script type="text/javascript">
$(window).scroll(function() {
var scroll = $(window).scrollTop();
$(".text").css("opacity","0");
if (scroll >= 200 + 90 + overview_height) {
$(".text").css("opacity","1").addClass("animated fadeIn");
}
});
</script>
<!-- fade in the careers bubble in Careers section on scroll -->
<script type="text/javascript">
$(window).scroll(function() {
var scroll = $(window).scrollTop();
$(".careers div .main_div_column_1_of_3_careers .img_container:nth-child(1)").css("opacity","0");
if (scroll >= 200 + 90 + overview_height + curriculum_height) {
$(".careers div .main_div_column_1_of_3_careers .img_container:nth-child(1)").css("opacity","1").addClass("animated rollInOpposite");
}
});
</script>
<!-- fade in the profile bubbles (images) in Alumni section on scroll -->
<script type="text/javascript">
$(window).scroll(function() {
var scroll = $(window).scrollTop();
$(".alumni_left_side").css("opacity","0");
if (scroll >= 300 + 90 + overview_height + curriculum_height + careers_height) {
$(".alumni_left_side").css("opacity","1").addClass("animated fadeIn");
}
});
</script>
<!-- fade in the profile bubbles (text paragraphs) in Alumni section on scroll -->
<script type="text/javascript">
$(window).scroll(function() {
var scroll = $(window).scrollTop();
$(".alumni_right_side").css("opacity","0");
if (scroll >= 200 + 90 + overview_height + curriculum_height + careers_height) {
$(".alumni_right_side").css("opacity","1").addClass("animated fadeIn");
}
});
</script>
<!-- fade in the tuition apply button in Tuition section on scroll -->
<script type="text/javascript">
$(window).scroll(function() {
var scroll = $(window).scrollTop();
$(".subscribe_div div a .button_large").css("opacity","0");
if (scroll >= 200 + 90 + overview_height + curriculum_height + careers_height + alumni_height) {
$(".subscribe_div div a .button_large").css("opacity","1").addClass("animated tada");
} else if (scroll < 200 + 90 + overview_height + curriculum_height + careers_height + alumni_height) {
$(".subscribe_div div a .button_large").css("opacity","1");
}
});
</script>
<!-- carousel alumni -->
<script type="text/javascript">
$(document).ready(function(){
$('#slider1').tinycarousel({display: 2});
});
</script>
<!-- Making text vertically center in the features sections (from http://stackoverflow.com/questions/17715227/vertical-align-using-jquery-for-all-devices)-->
<script type="text/javascript">
jQuery.fn.verticalAlign = function () {
return this
.css("position", "relative")
.css("margin-top",($(this).parent().outerHeight() - $(this).outerHeight())/2 + 'px' )
};
jQuery.fn.verticalAlign_for_first = function () {
return this
.css("position", "relative")
.css("margin-top",($(this).parent().outerHeight() - $(this).outerHeight())/2 - 70 + 'px' ) // 35 is half of 70, which refers to sticky nav bar height
};
jQuery.fn.verticalAlign_for_second = function () {
return this
.css("position", "relative")
.css("margin-top",($(this).parent().height() - $(this).height())/2 - 35 + 'px' ) // 35 is half of 70, which refers to sticky nav bar height
};
jQuery.fn.verticalAlign_for_third = function () {
return this
.css("position", "relative")
.css("margin-top",($(this).parent().height() - $(this).height())/2 - 70 + 'px' ) // 35 is half of 70, which refers to sticky nav bar height
};
jQuery.fn.verticalAlign_for_fourth = function () {
return this
.css("position", "relative")
.css("margin-top",($(this).parent().height() - $(this).height())/2 - 35 + 'px' ) // 35 is half of 70, which refers to sticky nav bar height
};
jQuery.fn.verticalAlignScreen = function () {
return this
.css("position", "relative")
.css("top", Math.max(0, (($(window).height() - $(this).outerHeight()) / 2) + $(window).scrollTop()) + 70 + "px");
};
$('.overview div div .span_1_of_3').verticalAlign();
$('.overview div span_1_of_3').verticalAlign();
$('.curriculum div div .content_wrapper').verticalAlign();
$('.careers div div .content_wrapper').verticalAlign_for_third();
$('.alumni div div .content_wrapper').verticalAlign_for_fourth();
// vertical alignment media query
$('.resp').verticalAlignScreen();
</script>
<!-- Video modal script -->
<script type="text/javascript">
$(function() {
$(".hide").click(function(){
$(".popup").hide();
});
$(".show").click(function(){
$(".popup").show();
});
});
</script>
<!-- Make push-play button stop pulsing after a click -->
<script type="text/javascript">
$(".push-play").click(
function () {
AddCSS();
}
);
function AddCSS() {
$(".push-play").css("-webkit-animation", "reset")
}
</script>
<!-- Parallax background effects -->
<script type="text/javascript">
$(window).stellar({ horizontalScrolling: false });
</script>
<!--ARBITARY ANCHOR JS FOR SMOOTH-SCROLLING ANCHORLINKS -->
<script type="text/javascript" src="js/jquery.arbitrary-anchor.js"></script>
<!-- Hide company logo & apply button on scroll, and show hidden menu Logo and Apply Now button -->
<script type="text/javascript">
$(document).ready(function() {
// pop up new logo on scroll past 600px
$(window).scroll(function(){
var windowsize = $(window).width();
var fromTopPx = 598 - 50; // distance to trigger (50 is the height of the main nav bar)
var scrolledFromtop = jQuery(window).scrollTop();
if(scrolledFromtop > fromTopPx){
$('nav').css("display","inline");
$('.display_hidden_soon').css("visibility","hidden");
} else {
jQuery('nav').show();
$('nav').css("display","none");
$('.display_hidden_soon').css("visibility","visible");
$('.active_item').removeClass("background_grey");
}
});
});
</script>
<NOSCRIPT>
<!-- Making sub navbar link highlighted when user is scrolling through section -->
<script type="text/javascript">
var hero_wrapper_height = $("#hero_wrapper").outerHeight();
var overview_height = $(".overview").outerHeight();
var curriculum_height = $(".curriculum").outerHeight();
var careers_height = $(".careers").outerHeight();
var alumni_height = $(".alumni").outerHeight();
var tuition_height = $(".tuition").outerHeight();
/* slide-up and down javascript for FAQ (commented out for now b/c need to dynamically change height) */
/*
jQuery('.expander').hide();
jQuery('.trigger').click(function() {
jQuery(this).next('.expander').slideToggle();
faq = faq + $(this).outerHeight();
console.log(faq);
});
*/
$(window).scroll(function() {
var windscroll = $(window).scrollTop();
if (windscroll >= 598 - 50 && windscroll < 598 - 50 + overview_height) { // height of header (600) and main navbar (50)
// Highlight 'Overview'
$('.stickybar_link1').addClass('selected_nav_link');
$('.stickybar_link2').removeClass('selected_nav_link');
} else if (windscroll >= 598 - 50 + overview_height && windscroll < 598 - 50 + overview_height + curriculum_height) {
// Highlight 'Curriculum'
$('.stickybar_link1').removeClass('selected_nav_link');
$('.stickybar_link2').addClass('selected_nav_link');
$('.stickybar_link3').removeClass('selected_nav_link');