<?php $__env->startSection('page_title'); ?>
	OSAA - Tickets / Shop
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_sub_title'); ?>    
	OSAA Tickets / Shop
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
	
	<?php /*  JS Slick Gallery Plugin (http://kenwheeler.github.io/slick/)  */ ?>
	<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
	<script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>	

	<script>
	(function(old) {
	  $.fn.attr = function() {
	    if(arguments.length === 0) {
	      if(this.length === 0) {
	        return null;
	      }

	      var obj = {};
	      $.each(this[0].attributes, function() {
	        if(this.specified) {
	          obj[this.name] = this.value;
	        }
	      });
	      return obj;
	    }

	    return old.apply(this, arguments);
	  };
	})($.fn.attr);

	</script>


	<style type="text/css">
        
        .ticket_item {
            float: left;
            display: block;
            width: 200px;
            height: 300px;
            border: 1px solid #d9e1e0;
            text-align: center;            
            margin: 0 40px 40px 0;
            padding: 0.5em 0;            
            /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fcfdff+12,deefff+82,98bede+100 */
            background: #fcfdff; /* Old browsers */
            background: -moz-linear-gradient(top,  #fcfdff 12%, #deefff 82%, #98bede 100%); /* FF3.6-15 */
            background: -webkit-linear-gradient(top,  #fcfdff 12%,#deefff 82%,#98bede 100%); /* Chrome10-25,Safari5.1-6 */
            background: linear-gradient(to bottom,  #fcfdff 12%,#deefff 82%,#98bede 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfdff', endColorstr='#98bede',GradientType=0 ); /* IE6-9 */
        }
        
        .ticket_item:hover {
            text-decoration: none;            
            border: 1px solid #990000;
            /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+43,efe7ae+100 */
            background: #ffffff; /* Old browsers */
            background: -moz-linear-gradient(top,  #ffffff 43%, #efe7ae 100%); /* FF3.6-15 */
            background: -webkit-linear-gradient(top,  #ffffff 43%,#efe7ae 100%); /* Chrome10-25,Safari5.1-6 */
            background: linear-gradient(to bottom,  #ffffff 43%,#efe7ae 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efe7ae',GradientType=0 ); /* IE6-9 */
        }       

        .ticket_item img {
            margin: 0;
        }

        .ticket_item h2 {
            margin-top: 0 !important;
        }

        .ticket_item h1 {
            line-height: 1.15em;
            height: 52px;
        }
    </style>
@parent

<?php $__env->stopSection(); ?>

<?php $__env->startSection('jquery_init'); ?>
	$('.button').button();

	$('.tabs').tabs();

	$( "button" ).click(function() {
		$( "#second-form" ).toggle( "slow" );
	});

	/*
     * Tab activation and element focus
     */
    function activateTab(target_tab_id, focus)
    {
        var target_tab = $('.tabs ul:first li a[href="#' + target_tab_id + '"]');
        var target_tab_index = target_tab.attr('data-tab-order');

        $('.tabs').tabs('option', 'active', target_tab_index);

        if (focus)
        {
            focusOnElement($(focus));
        }
    }    

    <?php if (!Helpers::strIsEmpty($info['tab'])): ?>
        var anchor = "<?php echo $info['tab']; ?>";        
    <?php else: ?>
        var anchor = window.location.hash.substring(1);
    <?php endif; ?>

    console.log(anchor);

    var focus = false;
    
    if (anchor)
    {
        activateTab(anchor, false);
        focus = '#content';
    }

    <?php if (!Helpers::strIsEmpty($info['focus'])): ?>
        focus = "<?php echo Session::get('focus'); ?>";
    <?php endif; ?>

    function focusOnElement(focus_element)
    {        
        var top = focus_element.offset().top - 45;
        setTimeout(function() {                                
            $('html, body').scrollTop(top);
        }, 1);
    }   

    if (focus)
    {
        focusOnElement($(focus));  
    }

    $('.activity-carousel').slick({
    	centerMode: true,
    	centerPadding: '60px',
    	slidesToShow: 3,
    	autoplay: true,
    	autoplaySpeed: 4000,
    	variableWidth: true,
    	arrows: false    	
	})
	.css({'cursor' : 'pointer'})
	.on('click', function(event)
	{
		 window.open('https://gofan.co/app/school/OSAA', '_blank');
	});


	$('<img src="<?php echo asset('images/slider_overlay_982x200px.png'); ?>" alt="" title="" />')
		.css({'position' : 'absolute', 'top' : 0, 'left' : 0, 'z-index' : 200, 'width' : '100%'})
		.appendTo('.activity-carousel');

<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_functions'); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('main_content'); ?>    

	<div class="tabs awards">
		<ul style="padding-left:5px; font-size:9pt;">            
			<li><a href="#tickets" data-tab-order="0">Tickets</a></li>
			<li><a href="#merchandise" data-tab-order="1">Merchandise</a></li>
			<li><a href="#photos" data-tab-order="2">Photos</a></li>
			<li><a href="#dvds" data-tab-order="3">DVDs</a></li>            
			<li><a href="#trophies" data-tab-order="4">Mini-Replica Trophies</a></li>
			<?php /* <li><a href="#rings" data-tab-order="5">Championship Rings</a></li> */ ?>
			<li><a href="#programs" data-tab-order="5">Championship Programs</a></li>
			<?php /* 
			<li><a href="#tabs-7">OSAA Radio Network CD's</a></li>
			 */ ?>
		</ul>

		<?php /*  Tickets Tab  */ ?>
		<div id="tickets">

			<h1>OSAA State Championship Event Tickets</h1>			
			<p>
				<a href="https://gofan.co/app/school/OSAA" target="_blank"><img src="<?php echo asset('/images/logos/gofan_large.png'); ?>" alt="Click to buy tickets on GoFan" title="Click to by tickets on GoFan" style="float: right; width: 400px; margin: 0 0 0 20px;" /></a>
				The OSAA and GoFan are working together to bring digital ticketing to our State Championship events.  Spectators will now be able to purchase their tickets online anytime including the day of the event and truly skip the lines as they enter.  Purchase tickets by clicking the <a href="https://gofan.co/app/school/OSAA" target="_blank"><b>GoFan</b></a> image to the right.
			</p>

			<br class="clear" />

			<h2>OSAA Ticket Policy</h2>
			<ul>
				<li>Student is any child age 5 and up through a senior in high school.</li>
				<li>Before purchasing - carefully review your order - event, location, quantity.</li>
				<li>All tickets should be treated like cash. There are no refunds, exchanges, or cancellations on any order once it is submitted.</li>
				<li>During championships, <b>ALL</b> tickets are also available at the door.</li>
			</ul>

			<br />

			<h2>GoFan Customer Service</h2>
			<p>
				Any question or concerns should be directed to GoFan Customer Service, <a href="mailto:service@gofan.co">service@gofan.co</a> or 1-678-679-7676.
			</p>

			<br /><br />

			<?php
				$activities = array('FBL', 'VBL', 'BSC', 'BXC');
			?>			

			<div class="activity-carousel" style="position: relative;">
				<?php foreach ($activities as $activity): ?>
					<img src="<?php echo asset('/images/sportsu/2018/' . strtolower($activity) . '.png'); ?>" alt="<?php echo Helpers::getActivityName($activity); ?>" title="<?php echo Helpers::getActivityName($activity); ?>" style="width: 200px; height: 200px;" />
				<?php endforeach; ?>
			</div>





			



			<?php /*  <div class="ticket_button_links" style="display: none;">        

		        <?php foreach ($info['ticket_configuration'] as $item): ?>

		            <?php if ($item->show): ?>

		                <a href="<?php echo $item->link; ?>" class="ticket_item ui-corner-all">
		                    <h1>
		                    	<?php if (substr_count($item->title, ',') > 3): ?>
		                    		<small><?php echo $item->title; ?></small>
		                    	<?php else: ?>
		                    		<?php echo $item->title; ?>
		                    	<?php endif; ?>
		                    </h1>                
		                    <img src="<?php echo $item->image; ?>" alt="" title="" style="" />
		                    <h2><?php echo $item->sub_title; ?></h2>               
		                </a>                

		            <?php endif; ?>

		        <?php endforeach; ?>

		    </div>  */ ?>

		    

		</div>
		<?php /*  End Tickets Tab  */ ?>


		<?php /*  Merchandise Tab  */ ?>
		<div id="merchandise">            


			<h1>Merchandise</h1>
			Support your school on their way to the title with official OSAA State Championship clothing and collectibles from OSAAStore.com powered by Sports U!  <br>
			Shop online for t-shirts, sweatshirts, letterman patches, lapel pins, hats and much more.  You can even order items from previous years while supplies last. 
			Contact Sports U at 503.227.2051 or via email at erics@sportsu-store.com.<br>
			<span class="linkList">
				<a href="http://www.osaastore.com" target="_blank">&raquo; Buy State Championship Merchandise at OSAAStore.com</a>
			</span>
			<p align="center"> <h3><a href="http://www.osaastore.com" target="_blank"><img src="<?php echo asset('images/logos/SportsU.jpg'); ?>"></a></h3>

			<h1>About Sports U</h1>
			SPORTS U boasts over 25 years of experience in providing apparel merchandising to many of the nations top events. SPORTS U understands what it takes 
			to facilitate your special event. SPORTS U is equipped to handle all facets of production from designing the event logo to creating exciting sales booths. 
			We take great pride in understanding your specific needs and providing exceptional service. As important, we appreciate the value in offering the best 
			quality product while remaining loyal to your budget requirements. Our goal is to produce merchandise that becomes your favorite piece.The one item you 
			always pull from the closet. Obviously the more the garment is displayed; the more advertising your event receives. Additionally, SPORTS U has a state of 
			the art website developed to drive sales long after the event is over, view it as a store that has your product on the shelf 365 days a year! SPORTS U 
			understands event merchandising and we welcome the opportunity to prove our value in making your event the most successful ever.<br>
			
			</p>


		</div>
		<?php /*  End Merchandise Tab  */ ?>

		
		<?php /*  Photos Tab  */ ?>
		<div id="photos">            
			<h1>Photos</h1>
			Relive your state championship moment with official action and awards photography from Northwest Sports Photography (NSP).  NSP is on-site at nearly every OSAA
			State Championship event taking photos and has them available for purchase on their website. Contact NSP at 800.446.5758 or via email at customerservice@4nsp.com. <br>
			<span class="linkList">
				<a href="http://www.4nsp.com/default.aspx" target="_blank">&raquo; Get State Championship Photos from Northwest Sports Photography</a>
			</span>
			<p align="center"> <h3><a href="http://4nsp.com/PhotosAction.aspx" target="_blank"><img src="<?php echo asset('images/logos/NSP.png'); ?>"></a></h3>
			</p>
						<h1>About Northwest Sports Photography</h1>
			Northwest Sports Photography has been specializing in sports photography for over 35 years since 1976. This involves the 3 areas of sports including Action Sports, 
			School Sports and Youth Sports. Please refer to the specific icon for additional information on any of these 3 areas. NSP has its own in-house photo lab with full 
			commercial & professional capabilities. Unlike many other sports photography companies, NSP processes and prints all their own work in-house. This includes all digital 
			creation and output. NSP does not accept outside lab work which allows 100% commitment and attention to NSP customers.<br>

		</div>
		<?php /*  End Photos Tab  */ ?>


		<?php /*  DVDs Tab  */ ?>
		<div id="dvds">
			<h1>DVDs</h1>
			Beginning with the 2009 Volleyball State Championships, 
			fans can purchase official DVDs of OSAA State Championship events from the NFHS Network.  
			We are working to make past OSAA State Championships available as well.  DVDs will take 3-4 weeks once an order is placed online through NFHSNetwork.com.  
			Contact the NFHS Network at 877.978.2311 or via email at support@playonsports.com. 	<br>
			<span class="linkList">
				<a href="http://www.nfhsnetwork.com/dvds" target="_blank">&raquo; Purchase State Championship DVDs</a>
			</span>
			<p align="center">
				<h3><a href="http://www.nfhsnetwork.com/dvds" target="_blank"><img src="<?php echo asset('images/logos/NFHSNetworkBig.jpg'); ?>"></a></h3>	
			</p>
			<h1>About the NFHS Network</h1>
			The NFHS Network captures the passion, pride, and energy of the high school experience by delivering live high school sports and events to family members and fans 
			whenever they want, wherever they are.

			The NFHS Network celebrates and showcases the unique accomplishments of students, whether they are a student-athlete participating in the 27 different sports 
			covered by the Network, or one of the student broadcasters from schools around the country that produce events through the School Broadcast Program. The NFHS 
			Network also features state playoff and championship events for the 56 state members of the NFHS Network.

			All NFHS Network events are available online at www.NFHSnetwork.com. Follow the NFHS Network on Facebook, Twitter, YouTube and Instagram at @NFHSnetwork for the 
			latest news and event information.

			The NFHS Network is a joint venture among the National Federation of State High School Associations (NFHS), its member state associations and PlayOn! Sports. 
			The NFHS is located in Indianapolis, Indiana and is the national leadership organization for high school sports and performing arts activities. PlayOn! 
			Sports is based in Atlanta, Georgia and is the nation's largest high school sports media company.<br>
		</div>
		<?php /*  End DVDs Tab  */ ?>

		
		<?php /*  Trophies Tab  */ ?>
		<div id="trophies">
			<h1>Mini Replica Trophies</h1>
			<div class="columns">
				<div class="half">  
					<p>Get a mini replica of the trophies presented at the OSAA State Championships from Crown Trophy. Mini replica trophies are 8" tall x 10" wide x 5" deep and make a great gift for coaches, students, parents, etc. Mini replicas can be produced for teams and individuals for any year in any OSAA activity. All orders include shipping.</p>
					<p>The ordering of mini replica trophies is currently suspended, but will be available soon. Please check back later this fall.</p>
					<?php /*  <h2 style="font-size: 13pt">Mini Replica State Championship Trophy Order Form</h2>
					<p>You can use this form to purchase a mini replica trophy. Complete the purchase by checking out via PayPal.</p>
					<form class="basic_form" role="form" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
						<input type="hidden" name="cmd" value="_s-xclick">
						<input type="hidden" name="hosted_button_id" value="AB54AZDAALXK2">
						<input type="hidden" name="on0" value="year">
						<?php echo Form::label('os0', 'Year', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
						<?php

							$years = schoolyear::all();

							$select = array();

							foreach ($years as $year)
							{
								$select[$year->id] = $year->id;
							}

							unset ($years);

						?>
						<?php echo Form::select('os0', $select, Session::get('year'), array('style' => 'width:290px;')); ?>
						<br><br>

						<input type="hidden" name="on2" value="activity">
						<?php echo Form::label('os2', 'Sport or Activity', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
						<?php

							$activities = activity::all();

							$select = array();

							foreach ($activities as $activity)
							{
								$select[$activity->name] = $activity->name;
							}

							unset ($activities);

						?>
						<?php echo Form::select('os2', $select, null, array('style' => 'width:290px;')); ?>
						<br><br>
						
						<input type="hidden" name="on1" value="class">
						<?php echo Form::label('os1', 'Classification', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
						<?php echo Form::text('os1', null, array('style'=>'width: 290px;', 'placeholder' => 'Enter Classification')); ?>
						<br><br>

						<input type="hidden" name="on3" value="boygirl">
						<?php echo Form::label('os3', 'Boys or Girls', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
						<?php echo Form::select('os3', array('Boys'=>'Boys','Girls'=>'Girls'), null, array('style' => 'width:290px;')); ?>
						<br><br>

						<input type="hidden" name="on4" value="place">
						<?php echo Form::label('os4', 'Place', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
						<?php echo Form::text('os4', null, array('style'=>'width: 290px;', 'placeholder' => 'Enter Place')); ?>
						<br><br>

						<input type="hidden" name="on5" value="firstline">
						<?php echo Form::label('os5', '1st Line', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
						<?php echo Form::text('os5', null, array('style'=>'width: 290px;', 'placeholder' => 'Enter 1st Line (max 35 characters)')); ?>
						<br><br>

						<input type="hidden" name="on6" value="secondline">
						<?php echo Form::label('os6', '2nd Line', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
						<?php echo Form::text('os6', null, array('style'=>'width: 290px;', 'placeholder' => 'Enter 2nd Line (max 35 characters)')); ?>
						<br><br>

	          <!-- <input type="hidden" name="quantity" value=""> -->
						<input type="hidden" name="quantity" value="quantity">
						<?php echo Form::label('quantity', 'Quantity', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
						<?php echo Form::text('quantity', 1, array('style'=>'width: 290px;', 'placeholder' => 'Enter Quantity')); ?>
						<br><br>
						
						<!-- </div> -->
						
						<?php echo Form::label('submit', '&nbsp;', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
						<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_paynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
	          <!-- Adds new trophy to the form -->
						<!-- <button class="button ui-button ui-widget ui-state-default ui-corner-all" role="button" aria-disabled="false" style="font-size: 13px; margin-top: -18px;" id="addTrophyButton" onClick="addTrophy(); return false;">Order More than One</button> -->
						<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
						<br><br>
						
					</form>
					 */ ?>
				</div>
				<div class="half">
					<p><b>Product Information</b></p>
					<ul>
						<li> 8"Tall x 10"Wide x 5"Deep</li>
						<li>$65.00 per unit (Price includes personalized nameplate, shipping &amp; handling)</li>
					</ul>
					<a href="mailto:kellyf@osaa.org">&raquo; Contact Kelly Foster (OSAA)</a>
				</div>
				<h3 style="text-align:center"><a href="http://www.crowntrophy.com/store-41" target="_blank"><img src="<?php echo asset('images/logos/Crown.jpg'); ?>"></a></h3>	
			</div>
									<h1>About Crown Trophy</h1>
			In the summer of 1978, Chuck Weisenfeld opened the first Crown Trophy store on Avenue U in Brooklyn, NY. With a vision of the industries future 
			and strong personal determination to succeed, Crown Trophy has grown into the largest retailer of award and recognition products in the country. 
			For over 30 years the Crown Trophy name represents the highest level of customer service, quality products and a commitment to excellence.<br>
		</div>
		<?php /*  End Trophies Tab  */ ?>

			
		<?php /*  Rings Tab  */ ?>
		<div id="rings">            
			<?php /*  <h1>Championship Rings</h1>
			Team and individual champions can now celebrate their hard work, dedication and success with an Official Champion
			Ring from Jostens. Champion rings come in eight stone colors and can be customized with your name, number, school or mascot.  
			You can even order a Champion Ring from previous years. Contact your Jostens representative or call 800.839.7125 to order. <br>
			<span class="linkList">
				<a href="http://www.jostens.com/osaa" target="_blank">&raquo; Order State Championship Rings from Jostens</a>
			</span>
			<p align="center"> <h3><a href="http://www.jostens.com/sports/osaa.html" target="_blank"><img src="<?php echo asset('images/logos/Jostens.jpg'); ?>"></a></h3>	

			</p>
									<h1>About Jostens</h1>
			In 1897 Otto Josten set out to repair people's keepsake jewelry. He soon found himself creating a cultural icon. Through the Jostens class ring, 
			generations have been empowered to share their unique stories and connections to the people, traditions and experiences that define them.
			And in turn, these stories have defined Jostens.
			Over the last century, we've continued to innovate to provide unique, lasting experiences for everyone that comes to Jostens to share stories and 
			celebrate achievements. With every custom item we create, from a preschooler's cap and gown to an All-Pro's championship ring, we're passionate about what we do.<br>
			 */ ?>
		</div>
		<?php /*  End Rings Tab  */ ?>
			

		<?php /*  Programs Tab  */ ?>
		<div id="programs">            
			<h1>Digital Championship Programs</h1>
			Beginning with the 2017-18 school year, the following programs were available online only.
			<div class="columns">
				<div class="third">
					<ul>
						<li>Cross Country</li>
						<li>Volleyball</li>
						<li>Soccer</li>
						<li>Swimming</li>
					</ul>
				</div>

				<div class="third">
					<ul>
						<li>Choir</li>
						<li>Cheerleading</li>
						<li>Band/Orchestra</li>
						<li>Track and Field</li>
					</ul>
				</div>

				<div class="third">
					<ul>
						<li>Baseball</li>
						<li>Dance.Drill</li>
						<li>Softball</li>						
					</ul>
				</div>
			</div>
			<br class="clear"><br />
			Download digital programs at <a href="<?php echo url('/programs'); ?>">www.osaa.org/programs</a>.
			<br /><br />
			2017-18 printed programs - Football, Basketball, and Wrestling


			<br /><br />

			<h1>Souvenir Programs</h1>
			Forgot to get your official State Championship Souvenir Program at the event?  The OSAA has you covered with extra copies of 
			the programs you want.  Most programs include state championship brackets, information about participating schools, historical 
			state championship records and a color map of all OSAA member schools.  To order contact Amerilyn Rivett at (503) 682-6722 x221.<br>


			<h2>Championship Souvenir Program Form</h2>

			<img src="<?php echo asset('images/logos/ProgramCover.png'); ?>" style="width: 200px; border: 1px solid #cccccc; float: right;"></h3>	

			<form class="basic_form" role="form" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
				<input type="hidden" name="cmd" value="_s-xclick">
				<input type="hidden" name="hosted_button_id" value="EFMZFRG8MNK3A">

				<input type="hidden" name="on0" value="souvenir1year">
				<?php echo Form::label('os0', 'Year', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
				<?php

					$years = schoolyear::all();

					$select = array();

					foreach ($years as $year)
					{
						$select[$year->id] = $year->id;
					}

					unset ($years);

				?>
				<?php echo Form::select('os0', $select, Session::get('year'), array('style' => 'width:290px;')); ?>
				<br><br>

				<input type="hidden" name="on2" value="souvenir1activity">
				<?php echo Form::label('os2', 'Sport or Activity', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
				<?php

					$activities = activity::all();

					$select = array();

					foreach ($activities as $activity)
					{
						$select[$activity->name] = $activity->name;
					}

					unset ($activities);

				?>
				<?php echo Form::select('os2', $select, null, array('style' => 'width:290px;')); ?>
				<br><br>
				
				<input type="hidden" name="on1" value="souvenir1class">
				<?php echo Form::label('os1', 'Classification', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
				<?php echo Form::text('os1', null, array('style'=>'width: 290px;', 'placeholder' => 'Enter Classification')); ?>
				<br><br>

				<input type="hidden" name="quantity" value="quantity">
				<?php echo Form::label('quantity', 'Quantity', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
				<?php echo Form::text('quantity', 1, array('style'=>'width: 290px;', 'placeholder' => 'Enter Quantity')); ?>
				<br><br>
				
				
				<?php echo Form::label('submit', '&nbsp;', array('class' => 'input_label', 'style' => 'width:150px;')); ?>
				<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_paynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">

				<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
				<br><br>
				
			</form>
			
			<a href="mailto:amerilynr@osaa.org">&raquo; Contact Amerilyn Rivett (OSAA)</a><br>


		</div>
		<?php /*  End Programs Tab  */ ?>
		
	</div>

<?php $__env->stopSection(); ?>