$(function(){

	 $('.slideshowContent img:first-child')
	 .asynchImageLoader({placeholder : "assets/images/ajax-loader_large.gif"});
	
	 $('.slideshowContent img:not(:first-child)')
	.asynchImageLoader({
		placeholder : "assets/images/ajax-loader_large.gif",
		timeout:2000
	});

	$('.slideshowContent').cycle({
		fx: 'scrollHorz', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		easing: 'easeInOutCirc',
		timeout: 4000,
		pager:  'ul.slideShowNav',
		prev: 'a.leftArrow', 
		next: 'a.rightArrow'
	});
});
