$(document).ready(function(){

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '120px', 
				height: '240px'
			}, 200); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '50px', 
				height: '100px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '100px'
			}, 200);
	});

	
});



$(document).ready(function(){

	$("#pageflip2").hover(function() {
		$("#pageflip2 img , .msg_block2").stop()
			.animate({
				width: '160px', 
				height: '32px'
			}, 200); 
		} , function() {
		$("#pageflip2 img").stop() 
			.animate({
				width: '100px', 
				height: '32px'
			}, 220);
		$(".msg_block2").stop() 
			.animate({
				width: '100px', 
				height: '32px'
			}, 200);
	});

	
});
