var janitorEvent = function(pJsonUrl)
{
	this.json_url = pJsonUrl;
};

janitorEvent.prototype.displayEvents = function(pEvents)
{
	$.get(this.json_url + '/event/index/getdescription/events/' + pEvents, function(data){
		$('#myContentSmall').html(data);
	});
};

janitorEvent.prototype.hideEvents = function()
{
	$('#myContentSmall').html('');
};

janitorEvent.prototype.displayCalendar = function(pDay,pMonth,pYear,pDiv)
{
	$.get(this.json_url + '/event/index/getcalendar/year/' + pYear + '/month/' + pMonth + '/day/' + pDay, function(data){
		$('#' + pDiv).html(data);
	});
};
