// Enter the events in the same format (you can delete old ones)
// IMPORTANT: There is NO comma on the last entry (there must be one at the end 
// of every line except the last one!  If you miss one out or put the extra one
// in then no gig will appear on the page, you may also get a javascript error


events = new Array(
new Array(new Date("28-30/5/2005"), "Sat 28th - Mon 30th May", "Chippenham Folk Festival")
);
today = new Date();
for(var itemNum in events)
{
if (events[itemNum][0] >= today)
{
document.write(events[itemNum][1]+" - "+events[itemNum][2]);
break;
}
}

