$(function() {
	$('#calendar').jCal({
		monthSelect:true,
		sDate:new Date(),
		
		callback:		
		function (day, days) {
				window.location.href = '/events/search/?group=&start=' + ( day.getMonth() + 1 ) + '-' + day.getDate() + '-' + day.getFullYear() + '&end=' + ( day.getMonth() + 1 ) + '-' + day.getDate() + '-' + day.getFullYear() + '&region='; 
				return true;
		}
	});
});
