var startSlideshow = function() {
	$('#s2').cycle({
		startingSlide: 0,
    	fx:     'scrollLeft',
    	timeout:  10000,
		speed: 500,
		pager:  '#s2Nav',
		pagerAnchorBuilder: function(idx, slide) { 
       		return '<a href="#"><img src="images/page-default.gif" alt="anchor" /></a>';
    	},
		before: function(idx, slide) {
			$('#s2Nav a').html('<img src="images/page-default.gif" alt="anchor" />');
			$('#s2Nav a').eq($(slide).index()).html('<img src="images/page-selected.gif" alt="selected" />');
		}
	});
	$('.activeSlide').html('<img src="images/page-selected.gif" alt="selected" />');
	$('#testimonials').cycle({
        timeout: 6000,
        speed: 500,
        fx: 'fade',
        random: 1
    });
};
