$(document).ready(function()
 {
    $("#about").hover(function(){
      $("#about_popup").show("slow");},
      function(){
      $("#about_popup").hide("slow");
    });
    $("#research_groups_mult_item").hover(function(){
      $("#research_groups_popup").show("slow");},
      function(){
      $("#research_groups_popup").hide("slow");
    });  
    $("#degree_programs_mult_item").hover(function(){
      $("#degree_programs_popup").show("slow");},
      function(){
      $("#degree_programs_popup").hide("slow");
    });  
 })
