$(document).ready(function () {
	$('.accordion-content').hide();
	//$('.accordion-title:first').addClass('active').next().show();
	$('.accordion-title').click(function () {
	if ($(this).next().is(':hidden')) {
		$('.accordion-title').removeClass('active').next().slideUp("slow");
		$(this).toggleClass('active').next().slideDown("slow");
	}
	else {
		$('.accordion-title').removeClass('active').next().slideUp("slow");
		}
		return false;
	});
});
$(document).ready(function() {
    $(".test-content").css("display", "none");
    $("#test-people li").click(function() {
        $('.small-col').height($('#content').height() - 40);
        var currentId = $(this).attr('id');
        var IdClicked = '#' + currentId;
        var ClassClicked = 'div.' + currentId;
        $("#test-people li").removeClass("active");
        $(IdClicked).addClass("active");
        $("div#fill-in").css("display", "none");
        $("div.test-content").css("display", "none");

        $(ClassClicked).fadeIn();
        $('.small-col').height($('.test-content').height());
        $('.small-col').height($('.large-col').height()+229);
    });

});
