$(document).ready(function()
{
	$('#testimonial-callouts').emoryCrossSlide({interval:10000,fadeSpeed:1000});	
	
	$("#testimonial-callouts .bottom-bar").click(function(event)
	{
		event.stopPropagation();
		$('#testimonial-callouts').emoryCrossSlide("advance", "next");
	});
	
	$('#testimonial-callouts').mouseenter(function()
	{
		$(this).emoryCrossSlide("pause");
	});
	
	$('#testimonial-callouts').mouseleave(function()
	{
		$(this).emoryCrossSlide("play");
	});
	
});
