function bindEffects(){
   $("#capabilitiesDesc h2 a, #newsDesc h2 a").click(function () {
      if ($("#expandable").is(":hidden")) 
      {
         $(this).text("Less"); 
         $(this).addClass("minus");         
         $("#expandable").slideDown("slow");
      } 
      else 
      {
         $(this).text("More");
         $(this).removeClass("minus");            
         $("#expandable").slideUp();
      }
   });
}
    
    
$(document).ready(function() {
   bindEffects();
});