function current_gigrecord(col1,col2,col3,col4)
		{
			this.col1 = col1;
			this.col2 = col2;
			this.col3 = col3;
			this.col4 = col4;
			return this;
			}

function next_gigrecord(col1,col2,col3,col4)
		{
			this.col1 = col1;
			this.col2 = col2;
			this.col3 = col3;
			this.col4 = col4;
			return this;
			}
			
function third_gigrecord(col1,col2,col3,col4)
		{
			this.col1 = col1;
			this.col2 = col2;
			this.col3 = col3;
			this.col4 = col4;
			return this;
			}
			
function fourth_gigrecord(col1,col2,col3,col4)
		{
			this.col1 = col1;
			this.col2 = col2;
			this.col3 = col3;
			this.col4 = col4;
			return this;
			}
//-----------------Do not touch anything above this line--------------------------------------------

var currentmonth = "September"; // Enter the current months name here in the format shown
var nextmonth = "October"; // Enter next months name here in the format shown
var thirdmonth = "November"; // Enter next months name here in the format shown
var fourthmonth = "December"; // Enter next months name here in the format shown


current_gig = new Array();// Enter this months gigs here in the format shown

current_gig[0] = new next_gigrecord("Sat. September 4", "Wedding", "Private", "Sorry!");
current_gig[1] = new next_gigrecord("Sat. September 18", "Dilaj's Motor Inn", "Auburn", "8:30");
current_gig[2] = new next_gigrecord("Fri. September 24", "Vernon Downs", "Vernon", "9:00");
current_gig[3] = new next_gigrecord("Sat. September 25", "Central Square Apple Festival", "Central Square", "TBA");

next_gig = new Array();// Enter next months gigs here in the format shown

next_gig[0] = new next_gigrecord("Fri. October 1", "Club Fusion", "N. Syracuse", "5:30");
next_gig[1] = new next_gigrecord("Sat. October 2", "Vernon Downs", "Vernon", "9:00");
next_gig[2] = new next_gigrecord("Sat. October 30", "Dilaj's Motor Inn", "Auburn", "8:30");

third_gig = new Array();// Enter next months gigs here in the format shown

third_gig[0] = new next_gigrecord("Fri. November 5", "Ukrainian Nationals Club", "Auburn", "9:00");
third_gig[1] = new next_gigrecord("Sat. November 27", "Dilaj's Motor Inn", "Auburn", "8:30");

fourth_gig = new Array();// Enter next months gigs here in the format shown

fourth_gig[0] = new next_gigrecord("Sat. December 4", "Vernon Downs", "Vernon", "9:00");
fourth_gig[1] = new next_gigrecord("Fri. December 10", "Ukrainian Nationals Club", "Auburn", "9:00");
fourth_gig[2] = new next_gigrecord("Sat. December 11", "Private Party", "Sorry!", "");

