Where you have, in the served source code:
Code:
<div id="loadarea" style="width: 600px" rev="preload:yes"></div>
The highlighted is meaningless. It could go with the trigger links, example:
Code:
<a href="http://prettysmartcart.com/smartcart/images/Coat-3.png"
rel="enlargeimage" rev="targetdiv:loadarea,preload:yes">
But it's the default anyway and has nothing to do with what you want. It just governs whether or not the larger images are preloaded so that they don't have to load when called for. This has nothing to do with what first appears in the loadarea div. That may and should if desired be hard coded:
Code:
<div id="loadarea" style="width: 600px; height: 351px;">
<img src="http://prettysmartcart.com/smartcart/images/Coat-2.png" alt="" />
</div>
The height bit is optional, but will help the browser layout faster if known. In the case of various heights to images loaded in there, it will (if set large enough) prevent the page from jumping. I calculated it for that page only. It's the height of the images that will go in there. It should be the maximum height of the images (the tallest if there are various heights) that go in there, allow extra for the description, if used.
You can put anything you like in there for the highlighted part. It will be overwritten as soon as one of the triggers is activated.
Bookmarks