function thumb(){
  //main 摜
  $('.thumbH').mouseenter(function(){
    $(this).find('.message').stop().animate({marginTop: '-80px'}, 700,'easeInOutQuart')
  })
  .mouseleave(function(){
    $(this).find('.message').stop().animate({marginTop: '0px'}, 700,'easeInOutQuart')
  })
  
  //main |摜
  $('.thumbV').mouseenter(function(){
    $(this).find('.message').stop().animate({marginTop: '-100px'}, 700,'easeInOutQuart')
  })
  .mouseleave(function(){
    $(this).find('.message').stop().animate({marginTop: '0px'}, 700,'easeInOutQuart')
  })  
}
