$(document).ready(function(){

	$('li.faq_button a').click(function(e){
    		if ($(this).hasClass('open')) {

                $(this).removeClass("open");
		var dropDown = $(this).parent().next();
		$('.dropdown').not(dropDown).slideUp(500);
		dropDown.slideToggle(500);
		e.preventDefault();

                } else {

                $("li.faq_button a").removeClass("open");
                $(this).addClass("open");
		var dropDown = $(this).parent().next();
		$('.dropdown').not(dropDown).slideUp(500);
		dropDown.slideToggle(500);
		e.preventDefault();

                }
	});

});
