HTML Code:
<div id="dynloadarea" style="width:80px;height:225px"></div>
<div id="dynloadarea2" style="width:80px;height:200px"></div>
The above are the two areas from the demo where the larger pictures appear onmouseover of the thumbnails or texts, respectively. Whichever, one(s) you are using (or even if you made a custom one), you can add an initial image tag to it like so:
HTML Code:
<div id="dynloadarea" style="width:80px;height:225px"><img src="initial.jpg"></div>
Where 'initial.jpg' can be any image you like. Since it is just an ordinary image tag, you can add any other valid attributes or style to it that you like. You could even make it a link in the usual HTML manner:
HTML Code:
<div id="dynloadarea" style="width:80px;height:225px"><a href="some.htm"><img src="initial.jpg"></a></div>
The beauty part is, whatever you put there will disappear as soon as one of the thumb or text triggers is activated by a mouseover and be replaced by the content configured for it in the script.
Bookmarks