$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('.clients-wrap-hide').hide();
 

 // toggle the slickbox on click    

  $('.slick-slidetoggle').click(function() {
    $('.clients-wrap-hide').slideToggle(400);
    return false;
  });
});
