$(document).ready(function(){
	$('a.lightbox').lightBox();
	
	$('#gallery').cycle({
		timeout: 0,
		next: '.next',
		prev: '.prev',
		after: onAfter
	});
	
	$('#slot1 img:first').stop().delay(500).fadeIn(2000, function(){
		$('#slot1').cycle({
			fx: 'fade',
			timeout: 4000
		});
	});
	
	$('#slot2 img:first').stop().delay(1000).fadeIn(1000, function(){
		$('#slot2').cycle({
			fx: 'fade',
			timeout: 6000
		});
	});
	
	$('#slot3 img:first').stop().delay(1500).fadeIn(1500, function(){
		$('#slot3').cycle({
			fx: 'fade',
			timeout: 10000
		});
	});
	
	$('#slot4 img:first').stop().delay(2000).fadeIn(2000, function(){
		$('#slot4').cycle({
			fx: 'fade',
			timeout: 5000
		});
	});
	$('#slot5 img:first').stop().delay(2500).fadeIn(4000, function(){
		$('#slot5').cycle({
			fx: 'fade',
			timeout: 9000
		});
	});
	$('#slot6 img:first').stop().delay(3000).fadeIn(1000, function(){
		$('#slot6').cycle({
			fx: 'fade',
			timeout: 7000
		});
	});
});

function onAfter(curr,next,opts) {
	var caption = (opts.currSlide + 1) + ' of ' + opts.slideCount + ' images';
	$('.count').html(caption);
	var index = opts.currSlide;
	$('.show_previous')[index == 0 ? 'hide' : 'show']();
	$('.show_next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}
