
$(document).ready(function() {
  $('input#StartDate').dt_picker({
    show_months: 3,
    cal_layout: 'week',
    date_time_format: 'DD/MM/YYYY',
    first_day_of_week: 'Sun',
    allow_blank:false,
    show_time_chooser:false
  });

  $('input#Next').mouseover(function() {
    $(this).css("color", "#F99E1C");
  });
  $('input#Next').mouseout(function() {
    $(this).css("color", "#E9602C");
  });


});
