jQuery(function(){
  jQuery("#pagepeel").hover(function() {
    jQuery("#pagepeel img.flip, .msg_block").stop()
      .animate({
        width: '300px',
        height: '258px'
      }, 220, function(){
        jQuery("#pagepeel img.flip").hide();        
      });
    } , function() {
    jQuery("#pagepeel img.flip").stop()
      .animate({
        width: '50px',
        height: '52px'
      }, 220);
    jQuery(".msg_block").stop()
      .animate({
        width: '50px',
        height: '50px'
      }, 200);
  });  
});
