$(document).ready(function(){
  $("#apDiv2, #apDiv3, #apDiv4, #apDiv5").hover(function(event){
    var the_id = $(this).attr("id");
    $("#top-"+the_id).addClass("upp");
  }, function(event){
    var the_id = $(this).attr("id");
    $("#top-"+the_id).removeClass("upp");
  });
});


