// testimonials slideshow
$('#testimonialSlides').cycle({
	height:  'auto',	// container height 
    fx:    	 'fade',	// none, fade, etc. 
    speed:    2000,		// any valid fx speed value 
    timeout:  6000,
	containerResize:0,
	fit:0,
	after: function (curr, next, opts, fwd) {
		//get the height of the current slide
		var $ht = $(this).height();
		if (!top.bSubsequent) {
			top.bSubsequent = 1;
			$(this).parent().css({height: $ht});
		} else {
			//set the container's height to that of the current slide
			$(this).parent().animate({height: $ht});
		}
	}
});