$(".collapser").click(function(){
    if($(this).next(".collapsable").css("display")=="none"){
		$(this).css("backgroundImage","url('graphics/collapse.png')");
	}else{
		$(this).css("backgroundImage","url('graphics/expand.png')");
	}
	$(this).next(".collapsable").slideToggle("slow");
});

$(".collapseAll").click(function(){
	$(".collapsable").slideUp("slow");
});

$(".collapseNone").click(function(){
	$(".collapsable").slideDown("slow");
});

$(".collapsed").each(function(){
	$(this).prev(".collapser").css("backgroundImage","url('graphics/expand.png')");
});
