$(function (){
  if ($(document.body).hasClass("basic-materials-comparator")){
    $("#basic-materials-comparator").comparator(5);
  }
  
  if ($(document.body).hasClass("detailed-materials-comparator")){
    $("#detailed-materials-comparator th.production-materials")
      .closest("tr")
        .find("td p")
          .hide()
        .end()
      .end()
      .find("a")
        .click(function (){
          var $self = $(this);
          var text = $self.text();
          if (text.match(/^Show/)){
            text = text.replace(/^Show/, "Hide");
          } else {
            text = text.replace(/^Hide/, "Show");
          }
          $self.text(text);
          $self.closest("tr").find("td p").slideToggle("fast");
          
          return false;
        })
      .end();
  }
});
