jQuery(function($){
  
  $(".hoverable").hover(
    function(){ $(this).addClass('hover');},
    function(){ $(this).removeClass('hover');}
  );
  
  
  if ( $(document).width() < 1002 ) {
    $('#wrap').css('padding', '0 20px');
  }
  

  
});
