$(function () {
	$(".expander").click(function () {
		$(this).parent("li").toggleClass("expanded_");
    $(this).next().slideToggle(500);
		
		return false;
	});
});
