
var image_count;
 var image_interval;
 var old_image = 0;
 var current_image = 0;
 
 $(document).ready(function(){
   image_count = $("div.image").size();
  $("div.image:eq("+current_image+")").css('visibility','visible');
   image_interval = setInterval(image_rotate,4000); //time in milliseconds
  
 });
 
 function image_rotate() {
   current_image = (old_image + 1) % image_count; 
	 
	 $("div.image:eq(" + old_image + ")").fadeOut(7000);
	 $("div.image:eq(" + current_image + ")").fadeIn(7000); 
	 $("div.image:eq(" + current_image + ")").css('visibility','visible');
    
   old_image = current_image;
 }
var text_count;
 var text_interval;
 var old_text = 0;
 var current_text = 0;
 
 $(document).ready(function(){
   text_count = $("div.testimonial").size();
  $("div.testimonial:eq("+current_text+")").css('visibility','visible');
   text_interval = setInterval(text_rotate,4000); //time in milliseconds
  
 });
 
 function text_rotate() {
   current_text = (old_text + 1) % text_count; 
	 
	 $("div.testimonial:eq(" + old_text + ")").fadeOut(4000);
	 $("div.testimonial:eq(" + current_text + ")").fadeIn(4000); 
	 $("div.testimonial:eq(" + current_text + ")").css('visibility','visible');
    
   old_text = current_text;
 }
