$(document).ready(function(){
	$('.tour-block').each(function(){
		var footer = $(this).next();              
		var slideshow = $('.slideshow',$(this));        
		var currSlideIndex = 1;
		var currSlide = $('#highlight_'+currSlideIndex, slideshow);
		var slidesLen = $('div.event-highlight', slideshow).length;
		var count = $('.count', footer);
		
		count.html('1 of '+slidesLen);
		
		$('.next a', footer).click(function(){
			currSlide.addClass('hidden');
			var next = (currSlideIndex+1)%(slidesLen+1);
			if(next===0) next++;
			currSlideIndex = next;
			count.html(currSlideIndex+' of '+ slidesLen);
			currSlide = $('#highlight_'+currSlideIndex, slideshow).removeClass('hidden');      
			return false;
		});
		
		$('.prev a', footer).click(function(){
			currSlide.addClass('hidden');
			var prev = (currSlideIndex-1);
			if(prev<=0) prev=slidesLen;
			currSlideIndex = prev;
			count.html(currSlideIndex+' of '+ slidesLen);
			currSlide = $('#highlight_'+currSlideIndex, slideshow).removeClass('hidden');      
			return false;
		})
	})
});                                     







