<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.18/jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
$('#Sdate').datepicker({
dateFormat : "yy-mm-dd",
endDate : '0d',
autoclose : true,
language : "kr",
orientation : "bottom",
todayHighlight : true,
toggleActive : true,
changeMonth : true,
changeYear : true,
minDate : -365,
maxDate : "0D"
}).on('changeDate', function(e) {
});
$('#Sdate').datepicker('setDate', 'today');
</script>