
 $(document).ready(function(){
	
		equalHeight($(".quote1 .quote-bubble,.quote2 .quote-bubble"));
		equalHeight($(".quote3 .quote-bubble,.quote4 .quote-bubble"));
		equalHeight($(".quote5 .quote-bubble,.quote6 .quote-bubble"));				
		equalHeight($(".quote7 .quote-bubble,.quote8 .quote-bubble"));
		equalHeight($(".quote9 .quote-bubble,.quote10 .quote-bubble"));		
		equalHeight($(".quote11 .quote-bubble,.quote12 .quote-bubble"));
		equalHeight($(".quote13 .quote-bubble,.quote14 .quote-bubble"));					
  });


function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}
