/* 
  This script moves alle topmenu-dropdowns to the isde and hides them until mouse-over.
  Copyright: Kraftvaerk and Björn 2006
 */

$.fn.navToggle = function(elm) {
  this.hover(
    function(){$('#subnav>ul').hide();$(elm).show();},
    function(){$('#subnav>ul').hide(); $('#subnav>ul:first').show();}
  );
}

$(document).ready(function(){
  $('#nav ul ul').hide().each(function(i){ 
    $(this).siblings("a").navToggle(this); //hover events on top menu links
    $('#subnav').append(this); //move the dropdown into the #subnav
  });
});
