adding css properties:
-moz-transition: all 1s ease-in-out;
-webkit-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
makes only firefox (version 12) act differently on jquery.animate()
just see the difference between clicking the two images on: http://jsfiddle.net/6Yj2f/1/
is there is an explanation to this behavior?