$(document).ready( function()
{
	/*
	var aFlickrSets = new Array('72157624951625902',	// Opening Reception at DEMO Fall 2010
								'72157624831872577',	// DEMOfocus Mobile Technologies 1 
							    '72157624834653775',	// Pavillion Cocktail Reception
								'72157624838092921',	// DEMOfocus Consumer Technologies 
							    '72157624838681485',	// DEMOfocus on Social and Media Tech 1
							    '72157624964968754',  	// DEMOfocus Social and Media Tech 3
								'72157624957832828',	// DEMOfocus Mobile Technologies Part 2
								'72157624949212664',	// Registration and Opening Day
								'72157624803328150',	// DEMOFall 2010 Dashboard
								'72157624840908235');	// DEMO Awards Ceremony
	*/
	var aFlickrSets = new Array('72157628708252827');	// Dashboard 2011 

	var iFIdx =Math.floor(Math.random()*aFlickrSets.length);
							
	$('#cycle').jflickrfeed(
	{
		feedapi: 'photoset.gne',
		qstrings: {
			nsid: '9025932@N08',
			set:  aFlickrSets[iFIdx]
		},
		itemTemplate: '<li><img id="{{title}}" src="{{image}}" alt="" /><div>{{title}}</div></li>'
	}, 
	function(data)	// Callback once all calls to Flickr have been made
	{
		$('#cycle div').hide();
		$('#cycle').cycle({
			timeout: 5000,
			before: function(ce, pe)
			{
				$(ce).children('div').hide();
			},
			after: function(ce, pe)
			{
				$(pe).children('div').show();
			}
		});
	});
});
