   
$(document).ready(function() {

//Cycle plugin for testimonial 
$('.testimonial').cycle({
		fx: 'scrollUp', // choose your transition type, ex: fade, scrollUp, scrollLeft etc... 
   		speed: 1000,
		timeout: 4000,  // milliseconds between slide transitions (0 to disable auto advance)
		cleartypeNoBg:   true, // set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
		cleartype:!$.support.opacity,  // true if clearType corrections should be applied (for IE) 
		pause:  1
});

});	//document ready closed
	
	

