$(document).ready(function(){


    $("#pageflip").hover(function() {
        $("#pageflip img , .msg_block").stop()
        .animate({
            width: '135px',
            height: '135px'
        }, 300);
    } , function() {
        $("#pageflip img").stop()
        .animate({
            width: '90px',
            height: '92px'
        }, 220);
        $(".msg_block").stop()
        .animate({
            width: '90px',
            height: '90px'
        }, 200);
    });

        if($('#mycarousel')){
            $('#mycarousel').jcarousel({
                wrap: 'circular'
            });
        }
	
});
