$(document).ready(function(){

//Page Flip on hover

	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '197px',
				height: '197px'
			}, 500);
		} , function() {
		$("#pageflip img").stop()
			.animate({
				width: '30px',
				height: '32px'
			}, 220);
		$(".msg_block").stop()
			.animate({
				width: '30px',
				height: '30px'
			}, 200);
	});

	$("#pageflip2").hover(function() {
		$("#pageflip2 img , .msg_block2").stop()
			.animate({
				width: '197px',
				height: '197px'
			}, 500);
		} , function() {
		$("#pageflip2 img").stop()
			.animate({
				width: '30px',
				height: '32px'
			}, 220);
		$(".msg_block2").stop()
			.animate({
				width: '30px',
				height: '30px'
			}, 200);
	});

        	$("#pageflip3").hover(function() {
		$("#pageflip3 img , .msg_block3").stop()
			.animate({
				width: '197px',
				height: '197px'
			}, 500);
		} , function() {
		$("#pageflip3 img").stop()
			.animate({
				width: '30px',
				height: '32px'
			}, 220);
		$(".msg_block3").stop()
			.animate({
				width: '30px',
				height: '30px'
			}, 200);
	});

});
