$(document).ready(function() {

	$('div.testimonial_accordion> div.info, div.flower').hide();


	$('div.testimonial_accordion> h4.trigger').click(function() {
		var $nextDiv = $(this).next();
		var $visibleSiblings = $nextDiv.siblings('div:visible');
		if ($visibleSiblings.length ) {
			$visibleSiblings.slideUp(400, function() {
			$nextDiv.slideToggle(1200);	
			$('div.flower')
				.delay(1000)
				.fadeIn(1000);
			});
		} else {
			$nextDiv.slideToggle(1200);	
			$('div.flower')
				.delay(1000)
				.fadeIn(1000);

	}
	
		if($(this).hasClass('active') ){
			$(this).removeClass('active');	
		} else {
		$('h4.trigger').removeClass('active');
			$(this).addClass('active');	
			$('div.flower').hide()
		}

		return false;

  });
});



