As far as I know, info isn't a valid attribute in any DOCTYPE. Starting with HTML 5, the data hyphen attribute is, example:
Code:
<a href="http://www.loftmidcentury.com/arco lamp 4.jpg" data-info="This is some product information!" rel="enlargeimage" rev="targetdiv:loadarea,trigger:mouseover,preload:yes,fx:fade"><img border="0" src="http://www.loftmidcentury.com/arco lamp 4.jpg" width="91" height="91"></a><br/>Arco Lamp
Whatever you use though the script needs to pick it up. One way to do that would be to edit the script (thumbnailviewer2.js) at around line #21 we see:
Code:
imghtml='<div>'+imghtml+((setting.enabletitle!='no' && $anchor.attr('title')!='')? '<br />'+$anchor.attr('title') : '')+'</div>'
So let's say we're using data-info as I suggest. In that case we can change the above line to (changes highlighted - two places, scroll the code block to see the second one):
Code:
imghtml='<div>'+imghtml+((setting.enabletitle!='no' && $anchor.attr('data-info')!='')? '<br />'+$anchor.attr('data-info') : '')+'</div>'
To do this you need to use a text editor. NotePad is fine. Or if you have another text editor that you like better, use it. Just open the thumbnailviewer2.js file with the editor, make the change and save the file.
Bookmarks