$(document).ready(function() {
			animateimage1();
		});

		function animateimage1(){
			$('#currentimage').css('top','-192px');
			$('#currentimage')
			.attr('src','images/website/1.JPG')
			.animate( { top: "-100" }, 2000, 
				function (){
					setTimeout("animateimage2()",2000);
					$('#currentimage2').attr('src','http://www.basbouw.com/images/website/2.JPG');
				}
			);
		}
		
		
		function animateimage2(){
				$('#currentimage')
				.fadeTo("slow", 0.0,
				function(){
					$('#currentimage')
					.attr('src','http://www.basbouw.com/images/website/2.JPG')
					.css({'top':'-220px'})
					.fadeTo("fast", 1)
					.animate( { top: "-70" }, 2000, 
						function(){ 
							setTimeout("animateimage3()",2000);
							$('#currentimage2').attr('src','http://www.basbouw.com/images/website/3.JPG');
						}
					);
				}
				);
		}
		
		function animateimage3(){
			$('#currentimage').fadeTo("fast", 0.0,
				function(){
					$('#currentimage')
					.css({'top':'-220px'})
					.fadeTo("fast", 1)
					.attr('src','http://www.basbouw.com/images/website/3.JPG')
					.animate( { top: "-70" }, 2000, 
						function(){ 
							setTimeout("animateimage4()",2000);
							$('#currentimage2').attr('src','http://www.basbouw.com/images/website/4.JPG');
						}
					);
				}
			);  
		}
		
		function animateimage4(){
			$('#currentimage').fadeTo("fast", 0.0,
				function (){
					$('#currentimage')
					.css({'top':'-150px'})
					.fadeTo("fast", 1)
					.attr('src','http://www.basbouw.com/images/website/4.JPG').animate( { top: "-150px" }, 2000, 
						function(){
								setTimeout("animateimage5()",2000);
								$('#currentimage2').attr('src','http://www.basbouw.com/images/website/5.JPG');
						}
					);
				}
			);
		}
		
		function animateimage5(){
			$('#currentimage').fadeTo("fast", 0.0,
				function (){
					$('#currentimage')
					.css({'top':'-350px'})
					.fadeTo("fast", 1)
					.attr('src','http://www.basbouw.com/images/website/5.JPG')
					.animate( { top: "-70" }, 2000,
						function(){
							animateimage6();
							$('#currentimage2').attr('src','http://www.basbouw.com/images/website/6.JPG');
							
						}
					); 
				}
			); 
		}
		
		function animateimage6(){
			$('#currentimage')
			.animate( { top: "-225" }, 2000,
				function(){
					setTimeout("animateimage7()",2000);
					$('#currentimage2').attr('src','http://www.basbouw.com/images/website/7.JPG');
				}
			);
		}
		
		function animateimage7(){
			$('#currentimage').fadeTo("fast", 0.0,
				function (){
					$('#currentimage')
					.css({'top':'0'})
					.attr('src','http://www.basbouw.com/images/website/6.JPG')
					.fadeTo("fast", 1)
					.animate( { top: "0" }, 2000,
						function(){	
							setTimeout("animateimage8()",2000);
						}
					); 
				}
			);
		}
		
		function animateimage8(){
			$('#currentimage').fadeTo("fast", 0.0,
				function (){
					$('#currentimage')
					.css({'top':'0'})
					.fadeTo("fast", 1)
					.attr('src','http://www.basbouw.com/images/website/7.JPG');
				}
			);
		}
