$(document).ready(function() {
//	$("#testimony-scroller").simplyScroll({autoMode: 'loop',frameRate: 20,startOnLoad: true});
	$(".homepage-promo").hoverIntent(
	function(){
		$(this).find("p").slideDown();
		$(this).find("h3 span").hide();
	},
	function(){
		$(this).find("p").slideUp();
		$(this).find("h3 span").show();
	}
	);
	
	$(".homepage-promo").click(function(){
		window.location = $(this).find("a").attr("href");
	});
});
