$(function() {

	$('div#s1').cycle({ 
		random: true,
   	 	fx: 'fade',
		timeout: 3000, 
		before: onBefore,
	    after:   onAfter
 	});
	
	$('div#s2').cycle({ 
		random: true,
   	 	fx: 'fade',
		timeout: 5000, 
		before: onBefore,
	    after:   onAfter
 	});
	
	$('div#s3').cycle({ 
		random: true,
   	 	fx: 'fade',
		timeout: 4000, 
		before: onBefore,
	    after:   onAfter
 	});

	function onBefore() { 
		$('#picsCaption span').html();
	};
	
	function onAfter() { 
		$('#picsCaption span').html(); 
	};

	$("#contentWrapper").localScroll({
		target: "#scroller",
		axis:'xy',
		queue:true,
		duration:1400,
		hash:true,
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});
	
	
});