$(document).ready(function() {	
	$("div.imagearea").jCarouselLite({
	    btnNext: "div#screenrotator .next",
	    btnPrev: "div#screenrotator .prev",
	    visible: 4,
	    speed: 650,
	    easing: "backout",
			auto: 10000
	});
}); // End jQuery

$(document).ready(function(){
  $('#testimonials .slide');
  setInterval(function(){
    $('#testimonials .slide').filter(':visible').fadeOut(2000,function(){
	  if($(this).next('li.slide').size()){
	    $(this).next().fadeIn(1000);
	  }
	    else
	  {
	    $('#testimonials .slide').eq(0).fadeIn(1000);
	  }
	});
  },12000);	
});
