Can you try changing the src of the last-child and see if that makes a difference? You can then move that element to be the first child
//not tested
var $list=$('#shots>li');
$list.filter(':last-child').children('img')
.attr('src', newUrlp.ProductImageSmall)
.parent()
.insertBefore( $list.eq(0) );
