//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-02A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Friday','10/2/2026','7:00 PM','8006150','Swamp-Gravy--Country-Come-to-Town-10-2-2026'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Saturday','10/3/2026','2:00 PM','8031266','Swamp-Gravy--Country-Come-to-Town-10-3-2026'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Friday','10/9/2026','7:00 PM','8031267','Swamp-Gravy--Country-Come-to-Town-10-9-2026'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Saturday','10/10/2026','7:00 PM','8006151','Swamp-Gravy--Country-Come-to-Town-10-10-2026'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Friday','10/16/2026','7:00 PM','8006152','Swamp-Gravy--Country-Come-to-Town-10-16-2026'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Saturday','10/17/2026','2:00 PM','8031268','Swamp-Gravy--Country-Come-to-Town-10-17-2026'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Friday','10/23/2026','7:00 PM','8005630','Swamp-Gravy--Country-Come-to-Town-10-23-2026'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Saturday','10/24/2026','6:00 PM','8006153','Swamp-Gravy--Country-Come-to-Town-10-24-2026'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Saturday','3/6/2027','2:00 PM','8031269','Swamp-Gravy--Country-Come-to-Town-3-6-2027'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Saturday','3/13/2027','6:00 PM','8031270','Swamp-Gravy--Country-Come-to-Town-3-13-2027'],['Swamp Gravy: Country Come to Town','Cotton Hall Theatre','Colquitt, GA','Saturday','3/20/2027','6:00 PM','8031271','Swamp-Gravy--Country-Come-to-Town-3-20-2027']],'swamp gravy','http://www.ticketnetwork.com/en/search/?text=swamp%20gravy');