jQuery(document).ready(function(){

//Page Flip on hover

	jQuery("#pageflip").hover(function() {
		jQuery("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500)
			.css("z-index","500"); 
		} , function() {
		jQuery("#pageflip img").stop() 
			.animate({
				width: '90px', 
				height: '93px'
			}, 220)
			.css("z-index","99");
		jQuery(".msg_block").stop() 
			.animate({
				width: '90px', 
				height: '90px'
			}, 200)
			.css("z-index","50");
	});

	
});
