   $(document).ready(function(){
	 
//expand news items and management details
	 $(".newsDetail").hide();
	 //$(".manDetail").hide();
	 
	 $(".expander").toggle(function(){
	el = $(this);
 $(this).parents(".smallheader").next().next().next().slideToggle("slow",function(){
      el.html("[ - close full story ]");
    });
  return false;

},function(){
	el = $(this);
 $(this).parents(".smallheader").next().next().next().slideToggle("slow",function(){
       el.html("[ + full story ]");
    });
  return false;
});

// $(".manexpander").toggle(function(){
//	el = $(this);
// $(this).parents(".manName").next().next().slideToggle("slow",function(){
//    });
//  return false;
//
//},function(){
//	el = $(this);
// $(this).parents(".manName").next().next().slideToggle("slow",function(){
//
//    });
//  return false;
//});
		
});