﻿$(function() {
    var oWidth = $('img.resize').width();
    var oHeight = $('img.resize').height();

    $('img.resize').hover(function() {
        $(this).stop()
                .animate({
                    width: 225 + 'px',
                    height: 161 + 'px'
                }, 1000)
                .removeClass("pre-hover")
                .addClass("on-hover");
    },
                function() {
                    $(this)
                        .stop()
                        .animate({
                            width: oWidth + 'px',
                            height: oHeight + 'px'
                        }, 1000)
                    .addClass("pre-hover")
                    .removeClass("on-hover");
                });
});
