// JavaScript Document

var currentImage = "#testi8";
	var count = 0;
	var total = 8
	
	function slideSwitch() {
    	 $(currentImage).fadeOut('slow', function() {
      	 });
		 count++;
		 currentImage = "#testi" + count;
		 
         $(currentImage).fadeIn('slow', function() {
         });
		 if (count == total) {
		 count = 0;
	     }
	}

	$(function() {
		setInterval( "slideSwitch()", 5000 );
	});

	
    
