$(document).ready(function(){
$("#pageflip").hover(function() {
$("#pageflip img , .msg_block").stop()
.animate({
width: '130px', 
height: '130px'
}, 350); 
} , function() {
$("#pageflip img").stop() 
.animate({
width: '40px', 
height: '42px'
}, 220);
$(".msg_block").stop() 
.animate({
width: '40px', 
height: '40px'
}, 200);
});
});