$(function () {
        
    $("#bottles div").hover(
        function(){
            $(this).find('img').stop(true,true).animate({
                    width : 150 + 'px'
                   ,top   : 0 + 'px'
                   ,left  : 0 + 'px'
                }
                ,300
            );
        }
       ,function(){
            $(this).find('img').stop(true,true).animate({
                    width : 120 + 'px'
                   ,top   : 34 + 'px'
                   ,left  : 15 + 'px'
                }
                ,300
            );
       }
    );
});


