$(document).ready(function() {

  $("#navbar .current .subnavbar").show();

  $("#navbar :not(.current)").hover(
    function(){
      $(this).children(".subnavbar").fadeIn("fast");
    }, function(){
      $(this).children(".subnavbar").fadeOut("fast");
    });

});
