$(function(){
    $('#topbar').dropdown();
    $("nav ul li").hover(
        function(){ $(this).addClass('hover');},
        function(){ $(this).removeClass('hover');}
    );
    
    $(".blank").click(function(e){
        var link = $(this).attr('href');
        window.open(link);
        e.preventDefault();
    });
    
    $('.alert-message .close').click(function(e){
      $(this).parent('.alert-message').fadeOut();
      e.preventDefault();
  });
}); // on ready
