$('document').ready(function() {
  $('#infolink').click(function() {
    $('.info').toggle('slow');
  });
  
  $('.filter img').hover(function() {
    $('.filterInfoBox').show('slow');
  }, function() {$('.filterInfoBox').hide('slow');} )
  
});
