var j = jQuery;
j(document).ready(function(){

//Page Flip on hover

	j("#pageflip").hover(function() {
		j("#pageflip img , .msg_block").stop()
			.animate({
				width: '131px', 
				height: '132px'
			}, 500); 
		} , function() {
		j("#pageflip img").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 220);
		j(".msg_block").stop() 
			.animate({
				width: '50px', 
				height: '50px'
			}, 200);
	});

	
});
