$(document).ready(function() {
$('#faq li').children('ul').hide();
    $('#faq a').click(function() {
        $(this).parent().siblings('.active').removeClass('active').find('ul').slideUp('slow');
        if ($(this).parent().hasClass('active')) {
			if ($("#expander").text() == 'HIDE ALL') $("#expander").text('SHOW ALL');
            $(this).next('ul').slideUp('slow');
            $(this).parent().removeClass('active');
        } else {
            $(this).next('ul').slideDown('slow');
            $(this).parent().addClass('active');
        }
	});
	
	$("#expander").click(function(){
		if ($(this).text() == 'HIDE ALL')  {
			$('#faq li').children('ul').slideUp('fast');
			$("#faq li").children('ul').each(function(index) {
				if ($(this).parent().hasClass('active'))
					$(this).parent().removeClass('active');
			});
		}
		else if ($(this).text() == 'SHOW ALL') { 
			$('#faq li').children('ul').slideDown('fast');
			$("#faq li").children('ul').each(function(index) {
				if (!$(this).parent().hasClass('active'))
					$(this).parent().addClass('active');
			});
		}
	});
});
