jQuery(document).ready(function(){
	$('.trigger').click(function() {
		$(this).next().toggle('fast');
		$(this).toggleClass('active');
		return false;
	}).next().hide();
});
