$(document).ready(function(){
  
  
  // Start - DropDown Menu
  $('li.page_item').hover(function() {
    if ($(this).children('a').attr('id') == "farbkonzepte") {
      $(".sub_nav:hidden").slideDown('fast');
    } else { // close menu if other <li> is hovere
      $(".sub_nav:visible").slideUp('fast');
    };
    
    $('#inner_spacer').hover(function() { // close menu whem mouse is not over menu
      $(".sub_nav:visible").slideUp('fast');
    });
  });
  // End - DropDown Menu
});
