$(window).load(function (){
	
	$('.btn').each(function(index){

		$(this).find('img').animate({
		'left': '+=600px'
		}, 1400 + (index * 50));
		
		$(this).click(function(){
			var target = this;
			// moveout
			$('.btnImage').each(function(index){
				$(this).animate({
						'left':'-=600px'
					}, 1400 + (index * 50), function(){ window.location = target; }
				);
			});
			$('.promo').each(function(){
				$(this).animate({
				'left': '-=600px'
				}, 1400);
			});
			$('.inzet').each(function(){
				$(this).animate({
				'left': '-=600px'
				}, 1400);
			});
			// on ready goto new page
			return false;
		});
	});
	
	$('.promo').each(function(){
		$(this).animate({
		'left': '+=600px'
		}, 1400);
	});
	
	$('.inzet').each(function(){
		$(this).css('opacity', 0);
		$(this).animate({
		'left': '+=600px',
				'opacity' : 1
		}, 1400);
	});
});
