$(document).ready(function() {  
  $('#accordion').accordion({ autoHeight: false, header: '.accordion-header' });
  
  $("a.dropdown-toggle-wwd").hover(function(){
    $("div.dropdown").removeClass("active"); 
    $("div.dropdown_wwd").addClass("active");
    return false;
  });
  
  $("div.dropdown_wwd").hover(function(){
    clearTimeout($(this).data('timeout'));
  }, function(){
    var timeout = setTimeout(function(){
      $("div.dropdown_wwd").removeClass("active");
    }, 500)
    $(this).data('timeout', timeout);
  })
  
  $("a.dropdown-toggle-au").hover(function(){
    $("div.dropdown").removeClass("active"); 
    $("div.dropdown_au").addClass("active");
    return false;
  });
  
  $("div.dropdown_au").hover(function(){
    clearTimeout($(this).data('timeout'));
  }, function(){
    var timeout = setTimeout(function(){
      $("div.dropdown_au").removeClass("active");
    }, 500)
    $(this).data('timeout', timeout);
  })
});
