//------------------------------------
//	CUSTOMERS.JS
//	Author: 	Engage Interactive
//	Requires:	jquery.js
//------------------------------------

$(function(){
//BEGIN jQuery

	// TESTIMONIALS
	
	Cufon.replace('#testimonials dl dt span');
	
	$('#testimonials dl dd:first').show();
	
	$('#testimonials dl dt').click(function(){
		$(this).addClass('open').next('dd').show().siblings('dd').hide();
		$(this).siblings('dt').removeClass('open');
		Cufon.replace('#testimonials dl dt span');
	});

//END jQuery
});