    // home page slider init
		$(document).ready(function(){	
			$("#slider").easySlider({
				auto: true,
				continuous: true,
        pause: 8000 
			});
		});	


    // Testimonial fade function


    startAnim();

    function fade1() {
      $("#testimonial1").fadeOut("slow",function() {
          $("#testimonial2").fadeIn("slow");  
      });
      setTimeout(fade2,9500);
    }

    function fade2() {
      $("#testimonial2").fadeOut("slow",function() {
          $("#testimonial1").fadeIn("slow");  
      });
      setTimeout(fade1,9500);
    }

    function startAnim() {
      setTimeout(fade1,9500);
    }



