﻿$(document).ready(function() {
  $('#svar').hide();
  $('a#showhide-toggle').click(function() {
    $('#svar').slideToggle(400);
    if ($(this).text() == 'DÖLJ') {
    $(this).text('LÄS MER');
  } else {
    $(this).text('DÖLJ');
  }
  return false;
  });
  $('#svar1').hide();
  $('a#showhide-toggle1').click(function() {
    $('#svar1').slideToggle(400);
    if ($(this).text() == 'DÖLJ') {
    $(this).text('LÄS MER');
  } else {
    $(this).text('DÖLJ');
  }
  return false;
  });
});
