For whatever reason I cannot get the easing to work on some images. The browser just loads them instantly without easing.
What I'm trying to accomplish is so that the side images slide from the bottom to it's position and the middle image slides from the top.
$(document).ready(function() {
$('.banner1 img, .banner3 img').animate({bottom:"0"}, '1000', 'easeOutBack');
$('.banner2 img').animate({top:"0"}, '1000', 'easeOutBack')
});
Any help would greatly be appreciated.