﻿jQuery(document).ready(function() {

    //Page Flip on hover

    jQuery("#pageflip").hover(function() {
        jQuery("#pageflip img , .msg_block").stop()
			.animate({
			    width: '500px',
			    height: '508px'
			}, 500);
    }, function() {
        jQuery("#pageflip img").stop()
			.animate({
			    width: '125px',
			    height: '127px'
			}, 220);
        jQuery(".msg_block").stop()
			.animate({
			    width: '125px',
			    height: '125px'
			}, 200);
    });


});
