$(document).ready(function(){

// Image Hover
  $('.footer-content img').imghover();
  
// Info Box
  $('.shop_client_nr > a').click(function() {
    $('.shop_client_infobox').fadeIn('slow', function() {
        // Animation complete
      });
  });
  
    $('.shop_client_infobox_close').click(function() {
    $('.shop_client_infobox').fadeOut('slow', function() {
        // Animation complete
      });
  });
  
  

  
  
});


