I’m referencing my JavaScript files before the closing body tag, hoping they will be parsed last (as they’re not needed until last). However when I analyse activity with PageSpeed in Firebug, the images seem to be requested last.
How can I make the images higher priority than the JavaScript code?
When you execute your javascript commands in the onLoad-Event the images should be read first. After the page is fully loaded the onLoad-Event is executed.