<?php $__env->startSection('page_title'); ?>
    OSAA - Spirit Safety
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_sub_title'); ?>    
   <?php echo $info['display_year']; ?> OSAA Spirit Safety
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
    @parent

    <style type="text/css">
        #sub_nav h2 {
            margin-left: 12px;
            color: #990000;
            font-size: 12pt;
            /*text-align: center;*/
            padding-bottom: 0.25em;
        }

        #sub_nav p {
            padding: 0 1em;
            font-size: 9pt;
            /*text-align: center;*/
        }

        .course_button {
            width: 250px;
            margin: 0 auto;
            padding: 1em;
            border: 2px solid #0d2458;
            background-color: #005fa9;
            color: #ffffff;
            font-weight: bold;        
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 11pt;
        }

        a.course_button:hover {
            text-decoration: none;       
            border: 2px solid #005fa9;
            background-color: #b0dcff;
        }

        /* Help Dialog */
        .help_dialog {
            font-size: 10pt;
        }

        .help_dialog h1 {
            font-size: 14pt;
            color: #005fa9 !important;
            margin: 1em 0 1em 0;
        }

        .help_dialog h2 {
            font-size: 12pt;
            color: #1C43A6 !important;
            margin: 1em 0 0.5em 0;
        }

        .help_dialog h3 {
            font-size: 10pt;
            color: #000000 !important;
            margin: 0.75em 0 0em 0;
        }

        .help_dialog ul, ol {
            margin-left: 28px;
        }

        .help_dialog dl dt {
            float: left;
            width: 200px;
            text-align: right;
            margin-right: 20px;
            font-weight: bold;
            clear: both;
        }

        .help_dialog .option_space {
            text-align: center;
            color: #222222;
            font-size: 10pt;
            font-style: italic;
            width: 244px;
            float: left;
            margin: 0 30px 30px 30px;
        }

        .help_dialog a.course_option {
            border: 2px solid #dedede;
            width: 200px;
            font-size: 18pt;
            line-height: 1.15em;
            padding: 20px;
            margin: 0 auto 15px auto;
            text-align: center;
            color: #ffffff;            
            font-style: normal;
            display: block;
        }

        .help_dialog a.course_option:hover {
            color: #ffcea3;
            text-decoration: none;
            border-color: #990000;
        }

    </style>

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

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

    $('.division_select, .page_functions').css({'width' : 'auto'});
    <?php /*  $('#sub_nav').css({'height' : '815px'});  */ ?>

    $('#choose-course').on('click', function(event)
    {
        event.preventDefault();

        $('<div></div>')
        .appendTo('body')
        .dialog(
        {                       
            draggable : false,
            resizable : false,
            height : 525,            
            width : 650,            
            modal : true,
            dialogClass : 'help_dialog',
            title : 'Select a Training Option',
            open : function ()
                {  
                    var dialog_object = $(this);

                    var html = '<p>Choose which specific OSAA Spirit Safety certification training option you want to complete.</p><br /><br />';

                    html += '<div class="option_space"><a href="/online-courses/5/view?content=spirit&option=cheer" target="_blank" class="course_option ui-corner-tr ui-corner-bl" style="background-color: #2683c6;">Cheerleading Specific</a>For coaches that <b>ONLY</b> interact with Cheerleading groups<br />(includes tumbling progression)</div>';

                    html += '<div class="option_space"><a href="/online-courses/5/view?content=spirit&option=dance" target="_blank" class="course_option ui-corner-tr ui-corner-bl" style="background-color: #26c67c;">Dance/Drill Specific</a>For coaches that <b>ONLY</b> interact with Dance/Drill groups</div>';

                    html += '<br class="clear" /><br />';

                    html += '<div class="option_space"><a href="/online-courses/5/view?content=spirit&option=combo" target="_blank" class="course_option ui-corner-tr ui-corner-bl" style="background-color: #26c6c6;">Cheerleading &amp;<br />Dance/Drill</a>For coaches that interact with Cheerleading <b>AND</b> Dance/Drill<br />(includes tumbling progression)</div>';

                    html += '<div class="option_space"><a href="/online-courses/5/view?content=spirit&option=tumble" target="_blank" class="course_option ui-corner-tr ui-corner-bl" style="background-color: #c2b3cc;">Tumbling Specific</a>Exclusively for tumbling instructors or gym trainers</div>';


                    dialog_object.html(html);                    
                },
            close : function ()
                {
                    var dialog_object = $(this);
                    $(dialog_object).remove();
                }
        });

    });

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

<?php $__env->startSection('page_functions'); ?>
       
    <span class="gray small">STAFF CONTACT: Kelly Foster, Associate Director, 503.682.63722 x233, <?php echo Helpers::obfuscateEmailLink('kellyf@osaa.org'); ?></span>

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


<?php $__env->startSection('sub_navigation'); ?>
    <div id="sub_nav">
        <h1>Links</h1>

        <ul>
            <li><a href="<?php echo url('/cheer'); ?>">Cheerleading</a></li>
            <li><a href="<?php echo url('/dance'); ?>">Dance/Drill</a></li>
            <li><a href="<?php echo url('/coaches/requirements'); ?>">Training Requirements</a></li>            
        </ul>   

        <br />        
        
        <h2>Spirit Safety Certification</h2>
        <p>
            The OSAA website hosts the online Spirit Safety Certification course.  Spirit Safety certifications are offered exclusively online.  This online certification course must be completed annually in order to fulfill the Spirit Safety Certification requirement for all Cheerleading and Dance/Drill coaches.  The online certification course is free.  
        </p>


        <?php /*  <p class="important bold" style="text-align: center;">
            <br /><br />
            The 2018-19 OSAA Spirit Safety Course<br />is currently being revised.<br />Release is scheduled for 8/7/2018.
        </p>  */ ?>
        
        
        <p style="text-align: center;">
            <br /><br />
            <a href="#" class="ui-corner-all course_button" id="choose-course">Start Course</a>
        </p>

        <br class="clear" /><br /><br />
        
        <p style="text-align: center;">
            <a href="<?php echo url('/exams/view-list/5'); ?>" target="_blank">List of 2018-19 course completions</a>
        </p>

        

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

<?php $__env->startSection('main_content'); ?>    
    
    <h1>Cheerleading and Dance/Drill Coach Training Requirements</h1>
    
    By OSAA rule, all Cheerleading and Dance/Drill coaches must be certified in the following courses prior to assuming coaching duties.
    <a href="<?php echo url('/coaches/requirements'); ?>" target="_blank">&raquo; AD and Coach Requirements &amp; FAQs</a>
    <table style="width: 100%; border-collapse: collapse;">
        <tr style="height: 2.5em; ">
            <td style="font-weight: bold; padding-left: 4px;">Fundamentals of Coaching</td>
            <td>One time requirement</td>
        </tr>
        <tr style="height: 2.5em; background-color: #efefef;">
            <td style="font-weight: bold; padding-left: 4px;">Concussion in Sports</td>
            <td>Annual - required every year</td>
        </tr>
        <tr style="height: 2.5em; ">
            <td style="font-weight: bold; padding-left: 4px;">Heat Illness Prevention</td>
            <td>Quadrennial - required every 4 years</td>
        </tr>
        <tr style="height: 2.5em; background-color: #efefef;">
            <td style="font-weight: bold; padding-left: 4px;">Appearance and Performance Enhancing<br />Drugs and Substances Training</td>
            <td>Quadrennial - required every 4 years</td>
        </tr>
        <tr style="height: 2.5em; ">
            <td style="font-weight: bold; padding-left: 4px;">Spirit Safety</td>
            <td>Annual - required every year</td>
        </tr>
    </table>   

    <h2>All Requirements Must Be Met Prior to Assuming Coaching Duties</h2>
    <p>
        Once the OSAA association year begins, all Cheerleading and Dance/Drill coaches must obtain all required certifications including OSAA Spirit Safety Certification before assuming coaching duties.
    </p>

    <h3 style="color: #990000;">For <?php echo $info['display_year']; ?></h3>
    <p>
        The first day of the <?php echo $info['display_year']; ?> association year is <?php echo date('l, F j, Y', strtotime($info['first_date'])); ?>.  OSAA Spirit Safety Certifications for <?php echo $info['display_year']; ?> expire on <?php echo date('n/j/Y', strtotime($info['last_date'])); ?> prior to the next association year.
    </p>   

    <h2>Frequently Asked Questions</h2>
    <div style="font-size: 9pt;">

        <b>Q. When must a coach be certified?</b><br />
        A. All coaches must be certified prior to assuming coaching duties unless an emergency exception is authorized in writing by the OSAA.  This includes cheerleading coaches, dance/drill coaches, and choreographers at schools that do not participate in competitions.

        <br /><br />

        <b>Q. Is certification required of volunteer coaches?</b><br />
        A. Yes.

        <br /><br />

        <b>Q. Must a "guest" coach be certified?</b><br />
        A. No, but if the coach has contact with students more than three times in a sport season, the coach shall no longer be considered a "guest" and must be certified.  A non-certified "guest" coach may not serve as a coach at a contest.  Coaches may not use this provision to circumvent the training requirements, i.e. a regular coach does not get a three-day grace period to interact with participants prior to being wholly certified.

        <br /><br />

        <b>Q. Can our team practice or attend a camp over the summer?</b><br />
        A. Yes; however, summer activities cannot be mandated.

        <br /><br />

        <b>Q. May a coach require participation on a non-school team including summer teams or use participation on a non-school team as a factor in selecting members of a school team or allowing full participation in team activities?</b><br />
        A. No to both questions.  Participation on a non-school team is a personal choice of the student and his/her parents, and may not be required or even considered when selecting school team members or allowing full participation in team activities.

        <br /><br />

        <b>Q. May a coach require participation in out-of-season or summer workouts as a factor in selecting members of a school team or allowing full participation in team activities?</b><br />
        A. No.


    </div>

   

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