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 = "January"; // Enter the current months name here in the format shown
var nextmonth = "February"; // Enter next months name here in the format shown
var thirdmonth = "March"; // Enter next months name here in the format shown
var fourthmonth = "April"; // 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("Fri. January 13th", "Off", "Sorry!", "");
current_gig[1] = new next_gigrecord("Fri. January 20th", "Off", "Sorry!", "");
current_gig[2] = new next_gigrecord("Sat. January 21st", "Vernon Downs", "Vernon", "8:00");


next_gig = new Array();// Enter next months gigs here in the format shown

next_gig[0] = new next_gigrecord("Fri. February 3rd thru 5th", "Off", "Sorry!", "");
next_gig[1] = new next_gigrecord("Sat. February 11th", "Vernon Downs", "Vernon", "8:00");

third_gig = new Array();// Enter next months gigs here in the format shown

third_gig[0] = new next_gigrecord("Fri. March 2nd", "Off", "Sorry!", "");
third_gig[1] = new next_gigrecord("Sat. March 10th", "Mickey's Goodtime Banquet Hall, Timeline & Smokin!", "Syracuse", "7:00");

fourth_gig = new Array();// Enter next months gigs here in the format shown

fourth_gig[0] = new next_gigrecord("Fri. April 6th thru 13th", "Off", "Sorry!", "");
fourth_gig[1] = new next_gigrecord("Sat. April 21st", "Off", "Sorry!", "");

