/* Author: 

*/


$(document).ready (function(){
	$('.accordian-content').hide();
	$('.accordian-content:first').show();
	$('.trigger:first').addClass('active');
	
	$('.trigger').click (function(){
		if ($(this).next().is(':hidden')) {
				$('.trigger').removeClass('active').next().slideUp();
				$(this).addClass('active').next().slideDown();
		}
	});
});






















