var currentId = 'flickr1';
var timer = null;

$(function(){
	$('.imageSelectList li').click(function(){
		clearTimeout(timer);
		next($(this));
	});
	$('.photo a').fancybox();
	timer = setTimeout("advance_slideshow()",4000);
});

function next(node)
{
	var newId = node.children().first().attr('id');
	hideOptions = {};
	showOptions = {};
	$('#' + currentId).removeClass('active');
	$('#' + newId).addClass('active');
	$('#' + currentId + 'photo').hide('slide',hideOptions,100, function(){
	   $('#' + newId + 'photo').show('slide',showOptions,100);
	   currentId = newId;
   });
}

function advance_slideshow()
{
	var currentNode = $('#' + currentId);
	var node = currentNode.parent().next();
	if(node.length == 0)
		node = $('#flickr1').parent();
	timer = setTimeout("advance_slideshow()",4000);
	next(node);
}