
$(document).ready(function() {

	//Självrullande bildspel
	$('.autoslideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout : 2400,
		speed: 2800
	});

	//Bildspel med nästa/förra-navigering
	$('.pagerslideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, scrollHorz, etc...
		timeout: 0,  // milliseconds between slide transitions (0 to disable auto advance)
		next: '#next' ,
		prev: '#previous',
		speed: 2200,  // speed of the transition (any valid fx speed value)
		after:onAfter
	});
	
	function onAfter(curr,next,opts) {
		var caption = 'Bild ' + (opts.currSlide + 1) + ' av ' + opts.slideCount;
		$('#noOfItems').html(caption);
	}

});

