﻿$('#slideshowIntroduction, #slideshowLocalExperts, #slideshowHighlights').cycle({ 
	fx:     'fade', 
	speed:  1200, 
	timeout: 5200, 
	next:   '#cityGuideAccordion .activeItem .next', 
	prev:   '#cityGuideAccordion .activeItem .previous',
	pager:  '#cityGuideAccordion .activeItem .slideshowPager', 
	pagerEvent: 'click',
	pauseOnPagerHover: 1, 
	pagerAnchorBuilder: function(idx, slide) { 
		// return selector string for existing anchor 
		return '#cityGuideAccordion .activeItem .slideshowPager li:eq(' + idx + ')'; 
	} 
})

;$('#browseMoreList').cycle({ 
   fx:     'scrollHorz', 
   speed:  1400, 
   timeout: 0, 
   next:   '#browseMoreControls .next', 
   prev:   '#browseMoreControls .previous',
   after:   hideControls
  });
  
  function hideControls(curr, next, opts) {
   var index = opts.currSlide;
   $('#browseMoreControls .previous')[index == 0 ? 'hide' : 'show']();
   $('#browseMoreControls .next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
  }
