 
jQuery(document).ready(function(){

  tfuse_form(); //controls the contact form

  function openClose(itemId, detailId)
  {
    var elt = $(detailId);
  
    if (elt.css("display") == 'none') {
    
      $(itemId).html("<span>Close</span>");
      elt.slideDown(500);
    }
    else {
    
      $(itemId).html("<span>Read more</span>");
      elt.slideUp(500);
    }
  }

  $(".button_link.small").each (
    function (index) {
      var p=$(this).parent();
      p.css({'margin-bottom':'0px', 'text-align':'center'});
      $(this).click (
        function () {
          openClose(this, "#details_"+index);
          $(this).css({'width':'105px'});
          return false;
        }
      );
    }
  );

});
