// JavaScript Document 

// Controls how the testimonials rotate on the home page.

//   Tony Arguelles Web Designs   
// www.TonyArguellesWebDesigns.com 

$(document).ready(function() {
	$('.testimonials').cycle({         
		fx: 'fade',
		cssBefore: 'background-color: none transparent;',
		cleartype: true,
		cleartypeNoBg: true, 
		pause: true
	}); 		
});
		
	
