$(document).ready(function(){


	setTimeout(function()
		{
		$('#items').animate({ opacity: '1'}, 1000); 
		$("#items").cycle(
			{ 
			fx:			"scrollHorz", 
			speed:		"2500", 
			timeout:	0,
			next:		".next", 
			prev:		".prev",
			before:		onBefore,
			after:		onAfter
			}
		);
		}, 1000);	

	setTimeout(function()
		{
		$('#scroller-navigation').show();
		}, 2000);	


	$('.content-txt-hide').hide();


	function onBefore(curr, next, opts, fwd)
		{
		$('.content-txt-hide').fadeOut(150);
		}

	function onAfter(curr, next, opts, fwd)
		{ 
		var x = opts.currSlide+1;
		var y = opts.slideCount;
		$('#nav-index').html(x + ' / ' + y); 
	
		var client = this.alt;
		$('div.'+client).fadeIn();
		}



	$("#section-title").click(function()
		{
		$('#nav-index').animate({opacity: 'toggle'}, 'fast');
		}
	);
	
	
	
});