ctrl-shift-J for the console, then try:

alert('hey');
$('img')
$('img').move();
function m() { $('img').move(); }
m();
m();
m
$('img').click(m);
setInterval(m, 1000);

Then edit this page and make your own copy.