jQuery(document).ready(function($) {
	 $('#news-rotator ul').cycle({
		fx: 'fade',
		timeout: 8000
	});
		
	$('.testimonial-container').each(function(index, element){
		var height = $(element).height();
		var parent = $(element).parent().height();
		
		$(element).css( 'top', (parent - height) / 2 );
		
	});

	// Testimonial fades
	 $('#testimonials ul').cycle({
		fx: 'fade',
		timeout: 12000
	});
});
