// JavaScript Document
$(document).ready(function(){
						   
	//Page Flip on hover 
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '270px', 
				height: '270px'
			}, 400); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '110px', 
				height: '110px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '85px', 
				height: '85px'
			}, 200);
	});
});
