$(document).ready(function(){
	$("#page").hover(function() {
		$("#page img , .msg_block").stop()
			.animate({
				width: '207px', 
				height: '180px'
			}, 500); 
		} , function() {
		$("#page img").stop() 
			.animate({
				width: '50px', 
				height: '52px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 200);
	});	
});
