function scroller() {
  $("#flash img:first-child").animate({marginLeft: -$("#flash img:first-child").width() },67*$("#flash img:first-child").width(),"linear",function () {
    var curimg = $("#flash img:first-child");
    $("#flash").remove("img:first-child");
    curimg.css('margin-left','0');
    curimg.appendTo("#flash");
  scroller();
  });
} 

$(document).ready(function() {
  scroller();
});