LastLineClicked = null;

function SunriseSunsetTableColorChange_Click(TableLine, MonthDay) {
	if (LastLineClicked != null) {
		LastLineClicked.bgColor = LastLineColor;
		Month_Day = LastMonthDay.split("_");
		document.getElementById(Month_Day[0]).style.color = '#ffffff';
		document.getElementById(Month_Day[1]).style.color = '#ffffff';
	}
	
	LastLineClicked = TableLine;
	LastLineColor = CurrentLineColor;
	LastMonthDay = MonthDay;
	
	CurrentLineColor = '#ffff00';
	TableLine.bgColor = '#ffff00';
	Month_Day = MonthDay.split("_");
	document.getElementById(Month_Day[0]).style.color = '#ffff00';
	document.getElementById(Month_Day[1]).style.color = '#ffff00';
}

function SunriseSunsetTableColorChange_Over(TableLine) {
	CurrentLineColor = TableLine.bgColor;
	if (TableLine.bgColor != '#ffff00') {
		TableLine.bgColor = '#999999';
	}
}

function SunriseSunsetTableColorChange_Out(TableLine) {
	TableLine.bgColor = CurrentLineColor;
}