$(function() {
	$("#event_datepicker").datepicker({	
									  
		onSelect: function(dateText, inst) {	  
			  if(inst.selectedDay<10){
				var day='0'+inst.selectedDay;
			  }else{
				var day=inst.selectedDay;
			  }
			  
			  if(inst.selectedMonth<9){
				var month=inst.selectedMonth+1;
					month = '0' +month;
			  }else{
				var month=inst.selectedMonth+1;
			  }
			  
			  var page_location = window.location.host;
			  window.location.replace("?page=events&day="+day+"&month="+month);
		  }
	});
	
$( "#datepicker" ).datepicker( "option", "showMonthAfterYear", true );
	
	$("body #ui-datepicker-div").css("display","none");
});
