I have a classifieds page, and this page will allow the user to submit an unlimited number of photos. The pics are resampled when they submit them so they're not HUGE, but they can potentially add up to a lot.
The carousel will load all of them on the page, too, although all but one will be overflow: hidden. There will also be thumbnails so that the site visitor can click to see the larger version. So imagine if there are 20 images that are 300x250 @ about 10-25kb each, then another 20 that are 65x50 @ 1-2kb each... that's 40 HTTP connections and about 500kb of download.
So the question is, do you guys think I should move this entire carousel to a separate script that's opened by AJAX? It would mean that the pics wouldn't download until last, so it will be a tad slower for the end user although it might APPEAR to be faster. And it might be better for Google?