$(document).ready(function(){
//efecto
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '155px', 
				height: '155px'
			}, 220); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '40px', 
				height: '40px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '38px', 
				height: '38px'
			}, 200);
	});	
});