$(document).ready( function() {
  $('div#menu>ul>li>a, div#menu>ul>li>ul>li>ul>li>a').each(function() {
    var title = $(this).html();
    $(this).after('<h2>' + title + '</h2>');
    $(this).remove();
  });
  $('div.actie').wrapInner('<div class="actiebottom"></div>');

  $('.lintlinks, .lintrechts').click(function() {
    $('.lintlinks').animate({"left": -1200}, 2000)
    $('.lintrechts').animate({"right": -1200}, 2000)
  });
});



