I'm probably crazy, but I've been staring at the two images for five minutes and can't see anything in one that isn't in the other, unless it is obscured by the annoying "view related gallery"button.
EDIT: Ok, half the time I load the page, the page works and I see the rock, but the other half of the time, the image is shifted down, the top half of the display box is black, and the "rock" is off screen...
Psst. Discovery folks. You've got yourself a race condition. You're calculating a `margin-top` to center an image vertically irrespective of whether that image has loaded. You either need to explicitly set the width and height as attributes on the image (good for preventing reflow anyway) or hold off on calculating your dimensions until after the image has loaded. You could even just wait for window load (instead of DOMContentLoaded).
You're not crazy, they've discovered a Schrödinger's rock. With a ridiculously high Planck's constant, and conscious observation working backward in time through an imager and interplanetary transmitter to collapse the wave function. So, pretty big news.
EDIT: Ok, half the time I load the page, the page works and I see the rock, but the other half of the time, the image is shifted down, the top half of the display box is black, and the "rock" is off screen...