I have a problem with jQuery moving Burt Reynolds face around on the page.
My code thus far is:
function moveBurt() { $(\'.burt\').ani
In addition to bharlings answer, I think you should remove the "px":
$('.burt').animate({'left' : "-=100"}, 3000, 'linear');
because JQuery will need to do arithmic. x.style.left -= 100px is not correct javascript
x.style.left -= 100px