$(document).ready(function(){
	$(".spdetail").animate({opacity: 0}, 0);
	$(".spdetail").hoverIntent(show_spdetail, hide_spdetail);
	function show_spdetail(){$(this).animate({opacity: .85}, 500);}
	function hide_spdetail(){$(this).animate({opacity: 0}, 500);}
	
	// Cycle testimonials
	$('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 10000,
		speed: 1000,
		pause:  1,
		random: 1,
		cleartypeNoBg: true
	});
	
});
