$(function(){
	
	var logo = $('#flashlogo');
	
	$('#gallery li:first').fadeIn(2000);
	setTimeout(function(){
		$('#flash').animate({backgroundColor:'black'},2000);
	}, 2000);
	
	var i = 2;
	var z = 1;
	var init = true;
	var animate = function(){
		$('#gallery li:nth-child('+i+')').css({zIndex:z}).hide().fadeIn(2000);
		if (i++>$('#gallery li').length-1) {
			i = 3;
		}
		$('#search').css('z-index',z+1);
		z++;
		if (init && i==3) {
			setTimeout(animate, 2000);
		} else if (init && i==4) {
			setTimeout(animate, 3000);
			init = false;
			$('#gallery li:nth-child('+i+')').remove();
		} else {
			setTimeout(animate, 5000);
		}
	};
	setTimeout(animate, 2000);
	
});
