jQuery bucle todos los elementos con clase
$('.testimonial').each(function(i, obj) {
//test
});
Better Bird
$('.testimonial').each(function(i, obj) {
//test
});
$('.testimonial').each(function(i, obj) {
//test
});
//_div = DIV or container
$('.testimonial', _div).each(function (i, obj) {
//add what to do here
});