Preload only means that the larger images are preloaded into the browser's cache. It doesn't mean that any of them appear in the loadarea when the page loads.
But you can hard code it that way if you like (it will be overwritten once a trigger is activated). Where you have:
HTML Code:
<tr>
<td colspan="10" height="379">
<div id="loadarea" style="width: 600px"></div></td>
</tr>
Make that:
Code:
<tr>
<td colspan="10" height="379">
<div id="loadarea" style="width: 600px"><img src="main-picture-1.jpg" style="border-width:0" alt=""></div></td>
</tr>
Bookmarks