?>
>Yearly</option>
                            </select>
                        </span>
                    </div>
                    <br />
                    <div class="date_controls" id="specific_controls"<?php 
                echo $day->getDateType() == "specific" || $day->getDateType() == "computed" && !$day->getOffset() ? "" : " style=\"display: none;\"";
                ?>
>
                        <div class="row-fluid space-above">
                            <label class="control-label span3 form-required" for="specific_date">Restricted Date: </label>
                            <span class="span8">
                                <div class="input-append">
                                    <input type="text" class="input-small datepicker" value="<?php 
                echo $day->getDateType() == "specific" ? date("Y-m-d", mktime(0, 0, 0, $day->getMonth(), $day->getDay(), $day->getYear())) : "";
                ?>
" name="specific_date" id="specific_date" />
                                    <span class="add-on pointer"><i class="icon-calendar"></i></span>
                                </div>
                            </span>
                        </div>
                        <div class="control-group row-fluid">
                            <label for="repeat_toggle" class="form-required span3">Repeat Yearly</label>
                            <span class="controls span8">
                                <label>No <input type="radio" name="repeat_toggle" id="no_repeat" value="0"<?php 
                echo $day->getDateType() == "specific" ? " checked=\"checked\"" : "";
                ?>
 /></label>
                                <label>Yes <input type="radio" name="repeat_toggle" id="repeat" value="1"<?php 
                echo $day->getDateType() == "computed" ? " checked=\"checked\"" : "";