﻿$(document).ready(function() {

    //Page Flip on hover

    $("#pageflip").hover(function() {
        $("#pageflip img, .msg_block").stop()
			    .animate({
			        width: '415px',
			        height: '456px'
			    }, 500);
    }, function() {
        $("#pageflip img").stop()
			    .animate({
			        width: '50px',
			        height: '52px'
			    }, 220);
        $(".msg_block").stop()
			    .animate({
			        width: '44px',
			        height: '40px'
			    }, 100);
    });


});

