// Returns a timestamp as a string because evidently taffy can compare string numbers but can't identify a number within an array
var $ts = function(year, month, day) {
	return new Date(year, month, day).getTime().toString();
};


var events = new TAFFY([
{
event: 'Gingerbread Village',
location: 'Sheraton Seattle Hotel Lobby',
address: '6th &amp; Pike',
dates: [$ts(2009, 5, 6), $ts(2009, 5, 7)],
description: 'Seattle’s top architecture firms partner with The Sheraton Seattle’s culinary team to design, bake and build inventive gingerbread displays reflecting this year’s theme: “A Superhero Holiday.”'
},
{
event: 'Holiday Gift Wrap at Pacific Place',
location: 'Pacific Place',
address: '6th &amp; Pine',
dates: [$ts(2009, 5, 6), $ts(2009, 5, 7)],
description: '13th year of wrapping presents to benefit The Forgotten Children’s Fund. Located at the Barnes &amp; Noble entrance on the Concourse level. Sponsored by the Seattle hospitality industry.'
},
{
event: 'The Forecast Calls for Snow at Pacific Place',
location: 'Pacific Place',
address: '6th &amp; Pine',
dates: [$ts(2009, 5, 6), $ts(2009, 5, 7)],
time: '6pm daily',
description: 'It’s snow! And it falls every evening inside the soaring atrium at Pacific Place. This year’s wonderland will feature a few surprises in the form of spontaneous entertainment by the Pacific Northwest Ballet.'
}
]);


/*
{
event: 'event',
location: 'location',
address: 'address',
startDate: $ts(),
endDate: $ts(),
dates: [$ts(), $ts()],
time: 'time',
description: 'description'
},
*/