jQuery(document).ready(function() {
	
	var aantal = 0;

	jQuery(".content_slider_border img").each(function(){
	aantal++;
	
	});
	
	
	aantal = aantal-6;
	
	var max = aantal*138;
	max = -max+"px";
	
	var animatie = "0";
	
	// Regelt de vorige knop
	jQuery("a#vorige").click(function(event){
		
		event.preventDefault();
		var left = jQuery('.content_slider_border').css("left");
		
		if (left != "0px"){		
			if (animatie == "0"){
				animatie = "1";
				jQuery('.content_slider_border').animate(
						{ left: '+=138'}, {
							duration: 900,
							easing: 'easeInOutQuad',
							complete: function(){ animatie = "0";}
						}
					
				);
			}
		}
	});
	
	// Regelt de volgende knop
	jQuery("a#volgende").click(function(event){
		
		event.preventDefault();
		var left = jQuery('.content_slider_border').css("left");
		if (left != max){
			if (animatie == "0"){
				animatie = "1";
				jQuery('.content_slider_border').animate(
						{ left: '-=138'}, {
							duration: 900,
							easing: 'easeInOutQuad',
							complete: function(){ animatie = "0";}
						}
				);
			}
		}
	
	
		
	});
		

});





