The script by default disables the onClick action within the image thumbnail links, yes. You can re-enable it by first removing the below lines inside the .js file:
Code:
pagelinks[i]["onclick"]=function(){ //Cancel default click action
return false
Then, inside your thumbnail link, add an onClick event handler and set it to open a page onClick, for example:
Code:
<a href="http://www.nasa.gov/images/content/167040main_image_feature_738_ys_4.jpg" rel="enlargeimage::mouseover" rev="loadarea::http://www.dynamicdrive.com" title="This is an example" onClick="window.open('http://google.com')">Thumbnail Example 1</a>
Bookmarks