Here is where your filenames and info for your rollovers go:
Code:
// tooltip content goes here (image, description, optional bgColor, optional textcolor)
var messages = new Array();
// multi-dimensional arrays containing:
// image and text for tooltip
// optional: bgColor and color to be sent to tooltip
messages[0] = new Array('rb.JPG','Here is a red balloon on a white background',"#FFFFFF");
messages[1] = new Array('duck2.gif','Here is a duck on a light blue background.',"#DDECFF");
messages[2] = new Array('test.gif','Test description','black','white');
I've put the filenames in red, the descriptions in green, the background color in blue and the foreground color in sienna (brown). It looks like you already had that down though, when you made the entry for test.gif. For that to work:
http://www.myrrin.com/selannii/test.gif
must exist and currently it does not.
Also, for:
HTML Code:
<a href="#" onmouseover="doTooltip(event,3)" onmouseout="hideTip()">Black Silk Pack</a><br>
to work, you need to add a:
messages[3]
entry with the appropriate image description etc.
Bookmarks