// globals


// getArticles
getCalendarItems = function() {
	
	$.ajax({
		url: "/handlers/list.ashx",
		type: "POST",
		dataType: 'json',
		data: "action=GetCalendarItems",
		success: function (data, textStatus) {
			renderCalendar(data)
		},
		error: function (XMLHttpRequest, textStatus, errorThrown) {
			renderCalendarError()
		} 
	}) 
}

	
	



