$(function(){
	$('.ctitle').click(function(){
			$(this).parent().next('.clist').toggle();
			return false;
	});
});

function initialize(){
	$(function(){ shrink_all() });
}

function expand_all() {
	$('.clist').show();
}

function shrink_all() {
	$('.clist').hide();
}

function div_display(id){
	$('#'+id).toggle();
}


function showhide(id){ 
				if (document.getElementById){ 
					obj = document.getElementById(id); 
					if (obj.style.display == "none"){ 
						obj.style.display = ""; 
						return './images/-.gif';
					} else { 
						obj.style.display = "none"; 
						return './images/+.gif';
					} 
				} 
			}
