$(document).ready
(
    function()
    {
        $('.bag').hover
        (
            function()
            {
                $('.bag').css('z-index', 1)
                         .css('top', 0);
                $(this).css('opacity', 1.0)
                       .css('z-index', 10)
                       .css('width', 168)
                       .css('height', 210);
            },
            function()
            {
                $('.bag').css('opacity', 1.0)
                         .css('top', 0)
                         .css('margin-right', -56)
                         .css('width', 168)
                         .css('height', 210);
                $(this).css('z-index', 10)
                       .css('top', 1);
            }
        );
});

