$(document).ready(function(){
/*////////////////////////////////////////////////////////////////*/
/* Photo page */
/*////////////////////////////////////////////////////////////////*/	

	$('#imgContainer ol li:first-child img').css({
		borderColor:'#00ff00'
	})
	
	$('#nextBtn').click(function(){

		$currentSet++;
		
		if($currentSet <= $maxClicks){
		$("#imgContainer ol").animate({"right": '+='+$displayWidth+'px'}, "slow");
		}else{
		$("#imgContainer ol").animate({"right": '-='+$fullWidth+'px'}, "slow");
		$currentSet = 0;
		}

	});
	
	$('#prevBtn').click(function(){
		if($currentSet >= 1){
		$currentSet--;
		$("#imgContainer ol").animate({"right": '-='+$displayWidth+'px'}, "slow");
		}else{
		$("#imgContainer ol").animate({"right": '+='+$fullWidth+'px'}, "slow");
		$currentSet = $maxClicks;
		}

	});
	
	$('.tours img').hover(function(){			
		$(this).css({'borderColor':'#f4dea4'});
	},function(){
		$(this).css({'borderColor':'#424d3d'});
	});
	
	$('#imgContainer li img').click(function(){
		$('#imgContainer li img').css({'borderColor':'#008000'});
		$(this).css({'borderColor':'#00ff00'});
	});
});

