jQuery(document).ready(function(){
	$('.sidebarTitle').click(function() {
		$(this).next().slideToggle('slow');
		return false;
	}).next().hide();
	$('.open').next().slideToggle('slow');
});
