function info_toggle_list(x, text, text2) {
  var y = "#ds_ttproducts_item_detail_expand_" + x;
  var z = "#ds_ttproducts_item_details_" + x;
  
  if ($(z).is(':hidden')) {
    $(z).slideDown();
    $(y).html(text2);
  }
  else {
    $(z).slideUp();
    $(y).html(text);
  }
}

function info_toggle(x, y, text, text2) {
  if ($(y).is(':hidden')) {
    $(y).show();
    $(x).html(text2);
  }
  else {
    $(y).hide();
    $(x).html(text);
  }
}

function info_toggle_icon(x, y, z) {
  if ($(y).hasClass('hidden')) {
    $(y).removeClass('hidden');
    $(z).addClass('ds_ttproducts_info_active');
    $(x + ' img').attr('src','/fileadmin/templates/hacumre/img/icons/cross.png');
  }
  else {
    $(y).addClass('hidden');
    $(z).removeClass('ds_ttproducts_info_active');
    $(x + ' img').attr('src','/fileadmin/templates/hacumre/img/icons/information.png');
  }
}
