-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
893 lines (405 loc) · 31.2 KB
/
index.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Branch Out Sideshow</title>
<meta name="author" content="" />
<meta name="keywords" content="swiftroot, hugo, go">
<meta name="description" content="Created by Swift Root">
<meta name="generator" content="Hugo 0.24" />
<link href='//fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,500,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="http://www.branchoutsideshow.com/css/animate.css" rel="stylesheet">
<link href="http://www.branchoutsideshow.com/css/style.default.css" rel="stylesheet" id="theme-stylesheet">
<link href="http://www.branchoutsideshow.com/css/custom.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="http://www.branchoutsideshow.com/img/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="http://www.branchoutsideshow.com/img/apple-touch-icon.png" />
<link href="http://www.branchoutsideshow.com/css/owl.carousel.css" rel="stylesheet">
<link href="http://www.branchoutsideshow.com/css/owl.theme.css" rel="stylesheet">
<link rel="alternate" href="http://www.branchoutsideshow.com/index.xml" type="application/rss+xml" title="Branch Out Sideshow">
<meta property="og:title" content="Branch Out Sideshow" />
<meta property="og:type" content="website" />
<meta property="og:url" content="//" />
<meta property="og:image" content="static/img/logo.png" />
</head>
<body>
<div id="all">
<header>
<div id="top">
<div class="container">
<div class="row">
<div class="col-xs-5">
</div>
<div class="col-xs-7">
<div class="social">
<a href="https://www.facebook.com/BranchOutSideshow/" target="_blank" style="opacity: 1;"><i class='fa fa-2x fa-facebook'></i></a>
<a href="http://twitter.com/BranchOutNF" target="_blank" style="opacity: 1;"><i class='fa fa-2x fa-twitter'></i></a>
<a href="mailto:[email protected]" target="_blank" style="opacity: 1;"><i class='fa fa-2x fa-envelope'></i></a>
<a href="" target="_blank" style="opacity: 1;"></a>
</div>
</div>
</div>
</div>
</div>
<div class="navbar-affixed-top" data-spy="affix" data-offset-top="200">
<div class="navbar navbar-default yamm" role="navigation" id="navbar">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand home" href="http://www.branchoutsideshow.com/">
<img src="http://www.branchoutsideshow.com/img/logo.png" alt="Branch Out Sideshow logo" class="hidden-xs hidden-sm">
<img src="http://www.branchoutsideshow.com/img/logo-small.png" alt="Branch Out Sideshow logo"
class="visible-xs visible-sm">
<span class="sr-only">Branch Out Sideshow - go to homepage</span>
</a>
<div class="navbar-buttons">
<button type="button" class="navbar-toggle btn-template-main" data-toggle="collapse"
data-target="#navigation">
<span class="sr-only">Toggle Navigation</span>
<i class="fa fa-align-justify"></i>
</button>
</div>
</div>
<div class="navbar-collapse collapse" id="navigation">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#section2">About</a>
</li>
<li class="dropdown">
<a href="#s6">MEDIA</a>
</li>
<li class="dropdown">
<a href="#s7">CONTACT</a>
</li>
<li class="dropdown">
<a href="https://branchout.nationbuilder.com/branch_out_sideshow_2017" class="special" target="_blank"><strong>Donate</strong></a>
</li>
</ul>
</div>
<div class="collapse clearfix" id="search">
<form class="navbar-form" role="search">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search">
<span class="input-group-btn">
<button type="submit" class="btn btn-template-main"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</div>
</div>
</div>
</div>
</header>
<section>
<div class="home-carousel">
<div class="container">
<div class="video-container">
<iframe width="1100" height="480"
src="https://www.youtube.com/embed/T6Mz8xBCMX8?rel=0&controls=0&showinfo=0"
frameborder="0" allowfullscreen></iframe>
</div>
</div>
</section>
<section class="bar background-white">
<div class="container">
<a name="section2"></a>
<div class="row">
<div class="col-sm-5 image-responsive"><img src="img/sideshow_final_poster.png"></div>
<div class="col-sm-7">
<h1> Branch Out Sideshow Fundraiser </h1>
<h3> Attempting to break a Guinness World Record—for brain health! </h3>
<p> Join us on <strong> September 23rd from 12-3pm </strong> in <b> Vancouver, B.C </b> at <a href="https://www.google.ca/maps/place/Vancouver+Technical+Secondary/@49.2614045,-123.0538726,17z/data=!3m1!4b1!4m5!3m4!1s0x54867134e5d899f3:0x9b56221787c205b4!8m2!3d49.2614045!4d-123.0516839" target="_blank"> Vancouver Technical Secondary School </a> for the first annual 'Branch Out Sideshow Fundraiser' as a supporting event
for Branch Out Neurological Foundation.
As a fundraiser initiative, Vincenzo Vipond will be attempting to break the <b> Guinness World Record </b> for
distance
travelled simultaneously juggling three objects and unicycling. </p>
<p>Branch Out Neurological Foundation is a non-profit organization that funds tech solutions and non-pharmaceutical approaches to over 600 brain disorders. </p>
<p>In addition to attempting a world record,
there will be experts presenting on their neurological
knowledge combined with the entertaining acts of circus performers and door prizes! </p>
<p>This is a <strong> FREE / ALL AGES </strong> event.</p><br><br>
<p>
<a href="https://branchout.nationbuilder.com/branch_out_sideshow_2017" target="_blank"
class="btn btn-template-primary pull-left">Donate Now</a>
<a href="http://www.branchoutfoundation.com/" class="btn btn-template-main pull-left"
target="_blank">Learn More About Branch Out </a>
</p><br><br><br>
<img src="img/BO_logo.png">
</div>
</section>
<section class="bar background-image-fixed-3">
<div class="container">
<div class="row">
<div class="col-sm-5"><img src="img/vinny-bio-photo.jpg"></div>
<div class="col-sm-5">
<h2><font color="white"> Meet the world record attempter:</h2>
<h2><pre> Vincenzo Vipond</pre> </h2>
<p> Vinny has worn a lot of hats in his time. But nothing has ever gripped him quite like performance art does.
From elementary school plays to street exhibitions to stage work both serious and silly,
he can't turn down an opportunity to entertain. It was only a couple years ago that he found the circus arts,
in particular the unicycle, which he now trains with almost exclusively.<br><br>
Influenced throughout his life by the many friends and family touched by neurological ailments, when a friend challenged him to make something of his new found skills, the path was clear.
He would use his talents to bring Branch Out’s mission to Vancouver and beyond. And he's inviting you to play your part too.<br><br>
Help Branch Out Neurological Foundation fund more research by <a href="https://branchout.nationbuilder.com/branch_out_sideshow_2017" target="_blank"> <b> donating today! </b> </a><br><br>
<b> Follow Vinny and his journey attempting to break a Guiness World Record: </b><br><br>
<a href="https://www.youtube.com/watch?v=nUkLH8oEUHY&list=PLtMrswui41c5jHfzCKMmu1SPHVQWV6D5V" target="_blank" > <i class="fa fa-youtube fa-3x" aria-hidden="true"></i> </a><a href="https://twitter.com/the_vinny_v" target="_blank" > <i class="fa fa-twitter fa-3x" aria-hidden="true"></i></a>
<a href="https://www.instagram.com/the.vinny.v/" target="_blank" > <i class="fa fa-instagram fa-3x" aria-hidden="true"></i> </a>
</div>
</section>
<section class="bar background-pentagon no-mb">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading text-center">
<h2>Sideshow Presenters & Entertainers</h2>
</div>
<p class="lead">
Joining us on stage will be a number of organizations who work to support neurodegenerative patients and the science of brain health in a variety of ways, as well as a bevy of talented entertainers.
</p>
<ul class="owl-carousel testimonials same-height-row">
<li class="item">
<div class="testimonial same-height-always">
<div class="text">
<p>Rock Steady Boxing (RSB) was founded in 2006 in Indianapolis. RSB’s founder, Scott Newman, was diagnosed with Parkinson’s at age 39. He discovered that non-contact boxing training lessened his symptoms. Word of this program spread quickly and in 2012, the ‘Affiliate’ program was created with the goal of spreading boxing training for Parkinson’s internationally. The Rock Steady Method has proven that anyone, at any level of Parkinson’s, can lessen their symptoms, delay the progression of their disease, and improve their overall quality of life.</p>
</div>
<div class="bottom">
<div class="icon"><i class="fa fa-quote-left"></i>
</div>
<div class="name-picture">
<img class="" alt="" src="http://www.branchoutsideshow.com/img/testimonials/person-2.jpg">
<h5>Rock Steady Boxing</h5>
<p><a href="https://www.rocksteadyboxing.org/" target="_blank">https://www.rocksteadyboxing.org/</a></p>
</div>
</div>
</div>
</li>
<li class="item">
<div class="testimonial same-height-always">
<div class="text">
<p>The Mighty Quinn is a native Vancouverite who was gripped by circus at an early age. He has since gone on to coach others in the circus arts, and recently returned from a world tour where he refined his craft to a razors’ edge. If you’re lucky you can find him performing a street show downtown or on Granville Island from time to time.</p>
</div>
<div class="bottom">
<div class="icon"><i class="fa fa-quote-left"></i>
</div>
<div class="name-picture">
<img class="" alt="" src="http://www.branchoutsideshow.com/img/testimonials/person-3.jpg">
<h5>The Mighty Quinn</h5>
<p><a href="https://www.instagram.com/mightyquinnshow/" target="_blank">https://www.instagram.com/mightyquinnshow/</a></p>
</div>
</div>
</div>
</li>
<li class="item">
<div class="testimonial same-height-always">
<div class="text">
<p>AcroFire Entertainment is a contemporary fire performance group based in Vancouver, British Columbia. The signature trademark of AcroFire is their spectacular fire performance. A combination of prop manipulation and partner acrobatics, this performance offers a completely unique and exciting experience to leave you captivated and thoroughly impressed.</p>
</div>
<div class="bottom">
<div class="icon"><i class="fa fa-quote-left"></i>
</div>
<div class="name-picture">
<img class="" alt="" src="http://www.branchoutsideshow.com/img/testimonials/person-4.jpg">
<h5>AcroFire</h5>
<p><a href="https://www.acrofireentertainment.com" target="_blank">https://www.acrofireentertainment.com</a></p>
</div>
</div>
</div>
</li>
<li class="item">
<div class="testimonial same-height-always">
<div class="text">
<p>iDance is an inclusive studio that encourages, empowers and entertains the dancer in all of us. They offer open-level, drop-in classes from Ballet to Hip Hop that are beginner-friendly, fun and a great workout! Caitlin Griffin organizes the Dancing for Huntington Disease fundraiser to support the Huntington Society of Canada with her smooth improvisational dance lessons.</p>
</div>
<div class="bottom">
<div class="icon"><i class="fa fa-quote-left"></i>
</div>
<div class="name-picture">
<img class="" alt="" src="http://www.branchoutsideshow.com/img/testimonials/person-1.jpg">
<h5>iDance</h5>
<p><a href="https://www.idancevancouver.com/" target="_blank">https://www.idancevancouver.com/</a></p>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="bar background-image-fixed-2 no-mb color-white text-center">
<a name="section4"></a>
<div class="container">
<div class="row">
<div class="col-md-12">
</div>
<h3 class="text-uppercase">Want to support the 'Branch Out Sideshow' fundraiser?</h3>
<p class="lead">All proceeds will be going towards the Branch Out Neurological Foundation</p>
<p class="text-center">
<a href="https://branchout.nationbuilder.com/branch_out_sideshow_2017" target="_blank" class="btn btn-template-transparent-black btn-lg">DONATE NOW!</a>
</p>
</div>
</div>
</div>
</section>
<section class="bar background-white no-mb">
<div class="container">
<a name="s6"></a>
<div class="col-md-12">
<div class="heading text-center">
<h2>Sideshow Social Media</h2>
</div>
<p class="lead">
See what people have been saying about #BRANCHOUTSIDESHOW !
</p>
<script src="//assets.juicer.io/embed.js" type="text/javascript"></script>
<link href="//assets.juicer.io/embed.css" media="all" rel="stylesheet" type="text/css" />
<ul class="juicer-feed" data-feed-id="branchysideshow"><h1 class="referral"><a href="https://www.juicer.io"></a></h1></ul>
</div>
</div>
</section>
<section class="bar background-gray no-mb">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading text-center">
<h2>Our Sponsors</h2>
</div>
<p class="lead">
</p>
<ul class="owl-carousel customers">
<li class="item" title="Distrikt Movement">
<a href="http://www.distrikt.ca/" target="_blank">
<img src="img/clients/00_distrikt.png" alt="Distrikt Movement" class="img-responsive" />
</a>
</li>
<li class="item" title="SideSaddle Bikes">
<a href="http://sidesaddlebikes.com/" target="_blank">
<img src="img/clients/00_sidesaddle.png" alt="SideSaddle Bikes" class="img-responsive" />
</a>
</li>
<li class="item" title="Our Community Bikes">
<a href="http://www.pedalpower.org/" target="_blank">
<img src="img/clients/00_our_commun_bikes.png" alt="Our Community Bikes" class="img-responsive" />
</a>
</li>
<li class="item" title="Bandidas Tacos">
<a href="https://www.bandidastaqueria.com/" target="_blank">
<img src="img/clients/00_bandidas.jpg" alt="Bandidas Tacos" class="img-responsive" />
</a>
</li>
<li class="item" title="Laser Sharp Printing">
<a href="https://www.lasersharp.ca/" target="_blank">
<img src="img/clients/00_laser_sharp.jpg" alt="Laser Sharp Printing" class="img-responsive" />
</a>
</li>
<li class="item" title="Lonsdale Events">
<a href="http://lonsdaleevents.com/" target="_blank">
<img src="img/clients/00_Lonsdale.jpg" alt="Lonsdale Events" class="img-responsive" />
</a>
</li>
<li class="item" title="Rayacom">
<a href="http://lonsdaleevents.com/" target="_blank">
<img src="img/clients/00_Rayacom.png" alt="Rayacom" class="img-responsive" />
</a>
</li>
<li class="item" title="Club16">
<a href="https://www.trevorlindenfitness.com/" target="_blank">
<img src="img/clients/Club16.png" alt="Club16" class="img-responsive" />
</a>
</li>
<li class="item" title="Lundbeck">
<a href="http://lundbeck.com/global" target="_blank">
<img src="img/clients/00_lundbeck.png" alt="Lundbeck" class="img-responsive" />
</a>
</li>
<li class="item" title="Hot Box Yoga">
<a href="http://www.thehotboxyoga.com/" target="_blank">
<img src="img/clients/00_yoga.png" alt="Hot Box Yoga" class="img-responsive" />
</a>
</li>
<li class="item" title="Savio Volpe">
<a href="http://www.saviovolpe.com/" target="_blank">
<img src="img/clients/00_savio.png" alt="Savio Volpe" class="img-responsive" />
</a>
</li>
<li class="item" title="Innovative Fitness">
<a href="http://www.innovativefitness.com/" target="_blank">
<img src="img/clients/00_if.png" alt="Innovative Fitness" class="img-responsive" />
</a>
</li>
<li class="item" title="Arts Umbrella">
<a href="http://www.artsumbrella.com/" target="_blank">
<img src="img/clients/00_au.png" alt="Arts Umbrella" class="img-responsive" />
</a>
</li>
<li class="item" title="Muse">
<a href="http://www.choosemuse.com/" target="_blank">
<img src="img/clients/00_muse.png" alt="Muse" class="img-responsive" />
</a>
</li>
<li class="item" title="Tao Organics">
<a href="http://www.taoorganics.com/" target="_blank">
<img src="img/clients/00_tao.png" alt="Tao Organics" class="img-responsive" />
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<footer id="footer">
<div class="container">
<a name="s7"></a>
<div class="col-xs-6">
<h3>Contact Us</h3>
<h5> Any questions? Interested in getting involved or being a sponsor for sideshow? </h5>
Bethel Afework - <a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="col-s-4">
<a href="/docs/sponsor.pdf" target="_blank"><i class="fa fa-file-pdf-o fa-3x" aria-hidden="true"></i> <h3> Sponsorship Package </h3> </a>
</div>
<div class="container">
<div class="col-md-18">
<p class="pull-right"> <a href="/docs/sideshow map.png" target="_blank" > <h3> Venue Site Map </h3> </a>
</p>
</div>
</footer>
<div id="copyright">
<div class="container">
<div class="col-md-12">
<p class="pull-left">2017 © <a href="http://www.branchoutfoundation.com" target="_blank">Branch Out Neurological Foundation</a></p>
<p class="pull-right">
Supported by <a href="http://www.swiftroot.com" target="_blank">Swift Root Inc.</a>
</p>
</div>
</div>
</div>
<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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-97719908-2', 'auto');
ga('send', 'pageview');
</script>
</div>
<script src="//code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/Counter-Up/1.0/jquery.counterup.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-parallax/1.1.3/jquery-parallax.js"></script>
<script src="//maps.googleapis.com/maps/api/js?key=AIzaSyCFhtWLJcE30xOAjcbSFi-0fnoVmQZPb1Y&v=3.exp"></script>
<script src="http://www.branchoutsideshow.com/js/hpneo.gmaps.js"></script>
<script src="http://www.branchoutsideshow.com/js/gmaps.init.js"></script>
<script src="http://www.branchoutsideshow.com/js/front.js"></script>
<script src="http://www.branchoutsideshow.com/js/owl.carousel.min.js"></script>
</body>
</html>