$(document).ready(function() {

	$('ul li:first-child').addClass('first-child');
	$('ul li:last-child').addClass('last-child');
	$('#content section:first-child').addClass('first-child');
	$('#content section:last-child').addClass('last-child');






	$('div.slideshow').each(function() {

		$(this).cycle({
			fx: 'fade',
			speed: 600,
			timeout: 0,
			next: $('.slideshow, .next'),
			prev: $('.prev'),
			after: onAfter2
		});
		function onAfter2(curr,next,opts) {
			var caption2 = (opts.currSlide + 1) + ' / ' + opts.slideCount;
			$('section.first-child .counter').html(caption2);
			}
		
	});
	
	
	
	
});



