function D_Event(startYear, startMonth, startDate, endYear, endMonth, endDate, startTime, endTime, title) {
	
	this.startYear = startYear;
	this.startMonth = startMonth;
	this.startDate = startDate;
	
	this.endYear = endYear;
	this.endMonth = endMonth;
	this.endDate = endDate;
	
	this.title = title;
	
	this.startTime = startTime;
	this.endTime = endTime;
	
	//this.tooltip = start_time + " - " + end_time + "\n" + title + "\n";
	//this.mootip = "<b>" + start_time + " - " + end_time + "</b><br />" + title + "<br />";
}
