jQuery(document).ready(function() {
  
  // Moving the Amnesomrade-menu and making it drop down when we click on books
  jQuery('#amnesomrade-menu').insertAfter('#publikationstyp-menu .publikationstyp-item-6').hide();
  
  jQuery('#publikationstyp-menu .publikationstyp-item-6').click(function(){
    jQuery('#amnesomrade-menu').slideToggle(500);
    return false;
  });
  
  jQuery('#sidebar-left h3').css({
    'margin-top' : '20px',
    'padding-top' : '15px',
    'border-top' : '2px dashed #CCCCCC'
  });
  
});