$(document).ready(function() {
  var desc = $('#inforuta .member');
  desc.first().show();
  
  $('.medlemmar .medlem').mouseover(function(){
    desc.hide();
    var id = "#" + $(this).attr('data-company');
    $(id).show();  
  });
});
