$(document).ready(function()
{
  $('#jqui-calendar').datepicker(
  {
    dateFormat: 'yy-mm-dd',
    onSelect: selectDate
  });
});

function selectDate(date, instance)
{
  document.location.href = BASE + '/event/results.php?this_date='+date;
}